feat: main
This commit is contained in:
parent
a139956a20
commit
f9ce2c293b
@ -1,5 +1,6 @@
|
||||
import React from 'react'
|
||||
import { Thingtime } from './Thingtime'
|
||||
import { Flex } from '@chakra-ui/react'
|
||||
|
||||
export const ThingtimeDemo = props => {
|
||||
const thing = {
|
||||
@ -26,5 +27,9 @@ export const ThingtimeDemo = props => {
|
||||
|
||||
return null
|
||||
|
||||
return <Thingtime thing={debug}></Thingtime>
|
||||
return (
|
||||
<Flex pb={40}>
|
||||
<Thingtime thing={debug}></Thingtime>
|
||||
</Flex>
|
||||
)
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ import { ThingtimeDemo } from '~/components/Thingtime/ThingtimeDemo'
|
||||
|
||||
export default function Index () {
|
||||
return (
|
||||
<Flex pb={40} flexDir="column" alignItems='center' justifyContent='center'>
|
||||
<Flex flexDir='column' alignItems='center' justifyContent='center'>
|
||||
<Splash></Splash>
|
||||
<ThingtimeDemo></ThingtimeDemo>
|
||||
</Flex>
|
||||
|
Loading…
Reference in New Issue
Block a user