feat: main

This commit is contained in:
Nikolaj Frey 2023-06-29 21:41:42 +10:00
parent f9ce2c293b
commit 56da3991a5
2 changed files with 6 additions and 6 deletions

View File

@ -189,7 +189,7 @@ export const Thingtime = props => {
{...props}
className={`thing-${cuid?.current}`}
>
{cuid?.current}
{/* {cuid?.current} */}
{path}
{showContextMenu && contextMenu}
{editableValue}

View File

@ -21,15 +21,15 @@ export const ThingtimeDemo = props => {
const [demoThing, setDemoThing] = React.useState(thing)
const debug = {
test: 'hey'
}
// const debug = {
// test: 'hey'
// }
return null
// return null
return (
<Flex pb={40}>
<Thingtime thing={debug}></Thingtime>
<Thingtime thing={demoThing}></Thingtime>
</Flex>
)
}