mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-04-19 00:11:29 +08:00
17 lines
613 B
TypeScript
17 lines
613 B
TypeScript
import React from "react";
|
|
import styles from "../../styles";
|
|
import ProductsIcon from "../../Components/Icons/ProductsIcon/ProductsIcon";
|
|
import ProductInfo from "../../Components/ProductInfo/ProductInfo";
|
|
import ProductsLists from "../../Components/ProductsLists/ProductsLists";
|
|
|
|
export default function Products() {
|
|
return (
|
|
<div style={{ margin: 32, height: "100%" }}>
|
|
<div style={styles.content_row}>
|
|
<ProductsIcon size={8} color="white" />
|
|
<h1 style={styles.text_large}>Products</h1>
|
|
</div>
|
|
<ProductInfo products={ProductsLists} />
|
|
</div>
|
|
);
|
|
}
|