theatre/packages/playground/src/tests/setting-static-props/index.tsx
2022-02-28 13:15:27 +01:00

13 lines
304 B
TypeScript

import studio from '@theatre/studio'
import {getProject} from '@theatre/core'
studio.initialize({usePersistentStorage: false})
const project = getProject('sample project')
const sheet = project.sheet('sample sheet')
const obj = sheet.object('sample object', {
position: {
x: 0,
y: 0,
},
})