feat: Heading Common

This commit is contained in:
quocsonnguyen
2021-08-25 15:09:39 +07:00
parent ce3efdce7d
commit 9ad9d33fb9
7 changed files with 16870 additions and 4734 deletions

View File

@@ -1,33 +1,12 @@
import { CarouselCommon, LabelCommon, Layout, QuanittyInput } from 'src/components/common'
import { HeadingCommon } 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 (
<>
<CarouselCommon data={dataTest} Component={test} itemKey="test" />
<QuanittyInput size="default" min={5} max={10} initValue={3} />
<QuanittyInput size="small" min={3} step={10} />
<LabelCommon type="default" shape="half" >SEEFOOT</LabelCommon>
<LabelCommon type="discount" shape="round">-15%</LabelCommon>
<LabelCommon type="waiting">Waitting</LabelCommon>
<LabelCommon type="delivering" >Delivering</LabelCommon>
<LabelCommon type="delivered">Delivered</LabelCommon>
<HeadingCommon textAlign="center" />
</>
)
}
Home.Layout = Layout
// Home.Layout = Layout