commerce/pages/index.tsx
2021-08-25 17:06:48 +07:00

28 lines
469 B
TypeScript

import { CarouselCommon, LabelCommon, Layout, QuanittyInput,CheckboxCommon } from 'src/components/common'
const dataTest = [{
text: 1
}, {
text: 2
}, {
text: 3
}, {
text: 4
}, {
text: 5
}, {
text: 6
}]
const test = (props: { text: string }) => <div className="h-64 bg-yellow-300">{props.text}</div>
export default function Home() {
return (
<>
<CheckboxCommon defaultChecked={true}></CheckboxCommon>
</>
)
}
Home.Layout = Layout