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} {...props}
className={`thing-${cuid?.current}`} className={`thing-${cuid?.current}`}
> >
{cuid?.current} {/* {cuid?.current} */}
{path} {path}
{showContextMenu && contextMenu} {showContextMenu && contextMenu}
{editableValue} {editableValue}

View File

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