🎨 styles: tab common

:%s
This commit is contained in:
lytrankieio123
2021-09-09 11:03:14 +07:00
parent dd4fff8478
commit 4f905b1558
7 changed files with 101 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
import {
CollapseCommon, Layout, RelevantBlogPosts
CollapseCommon, EmptyCommon, Layout, RelevantBlogPosts
} from 'src/components/common'
const COLLAPSE_DATA = [
@@ -39,8 +39,12 @@ const COLLAPSE_DATA = [
export default function Test() {
return (
<>
<EmptyCommon />
<CollapseCommon data={COLLAPSE_DATA} />
<RelevantBlogPosts />
<EmptyCommon description="" />
<EmptyCommon description="No product" />
</>
)
}