🎨 styles: recommended recipe

:%s
This commit is contained in:
lytrankieio123
2021-09-06 12:26:59 +07:00
parent 2a0e742332
commit 8712ae717d
8 changed files with 199 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
import ListProductWithInfo from 'src/components/common/ListProductWithInfo/ListProductWithInfo';
import { PRODUCT_DATA_TEST } from 'src/utils/demo-data';
const ReleventProducts = () => {
return (
<ListProductWithInfo
title="Relevant Products"
subtitle="Last call! Shop deep deals on 100+ bulk picks while you can."
data={PRODUCT_DATA_TEST}
/>
);
};
export default ReleventProducts;