Framer 에서 Global store 만들기.

Framer 에서 Global store 만들기.


import type { ComponentType } from "react"
import { createStore } from "https://framer.com/m/framer/store.js@^1.0.0"

// Learn more: https://www.framer.com/docs/guides/overrides/

const useStore = createStore({
    count: 2,
})

export function withCount(Component): ComponentType {
    return (props) => {
        const [store, setStore] = useStore()
        let count = store.count.toString()
        return <Component {...props} text={count} />
    }
}

export function withIncrementCount(Component): ComponentType {
    return (props) => {
        const [store, setStore] = useStore()

        return (
            <Component
                {...props}
                onClick={() => setStore({ count: store.count + 1 })}
            />
        )
    }
}

export function withDecrementCount(Component): ComponentType {
    return (props) => {
        const [store, setStore] = useStore()

        return (
            <Component
                {...props}
                variant={store.count === 0 ? "Minus - Disabled" : "Minus"}
                onClick={() => {
                    if (store.count !== 0) {
                        setStore({ count: store.count - 1 })
                    } else {
                        return
                    }
                }}
            />
        )
    }
}

Angdry

서비스개발팀 / 리드

같은 카테고리의 글

데이터로 성장할 수 있는 시간, 놓치지 마세요.

주식회사 와이즈트래커 대표자 사내이사 김정우 사업자등록번호 261-81-22632 통신판매신고번호 제 2024-서울성동-2089 호

사업자정보 확인

호스팅제공자정보 아마존웹서비스(AWS) 주소 서울 성동구 광나루로 130, 서울숲IT캐슬 1410 전화번호 02-6925-6636 이메일 mkt@wisetracker.co.kr


Copyright © 2026 Wisetracker Inc. All Right Reserved.Some Image of by jcomp and Freepik

데이터로 성장할 수 있는 시간, 놓치지 마세요.

주식회사 와이즈트래커 대표자 사내이사 김정우 사업자등록번호 261-81-22632 통신판매신고번호 제 2024-서울성동-2089 호

사업자정보 확인

호스팅제공자정보 아마존웹서비스(AWS) 주소 서울 성동구 광나루로 130, 서울숲IT캐슬 1410

전화번호 02-6925-6636 이메일 mkt@wisetracker.co.kr


Copyright © 2026 Wisetracker Inc. All Right Reserved.Some Image of by jcomp and Freepik

데이터로 성장할 수 있는 시간,
놓치지 마세요.

통신판매신고번호 제 2024-서울성동-2089 호

주식회사 와이즈트래커 대표자 사내이사 김정우 사업자등록번호 261-81-22632

사업자정보 확인

호스팅제공자정보 아마존웹서비스(AWS) 주소 서울 성동구 광나루로 130, 서울숲IT캐슬 1410

전화번호 02-6925-6636 이메일 mkt@wisetracker.co.kr


Copyright © 2026 Wisetracker Inc. All Right Reserved.Some Image of by jcomp and Freepik