mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2025-02-22 18:10:33 +03:00
16 lines
450 B
TypeScript
16 lines
450 B
TypeScript
|
import { Card } from "antd";
|
||
|
import React from "react";
|
||
|
import { useAppSelector } from "../../hooks";
|
||
|
import { products } from "../../store/reducers/nodesInputReducer";
|
||
|
|
||
|
export const ProductsView:React.FC = () =>{
|
||
|
const getProducts = useAppSelector(products)
|
||
|
console.log(getProducts)
|
||
|
return(
|
||
|
<div>
|
||
|
<Card title="Card title" bordered={false}>
|
||
|
Card content
|
||
|
</Card>
|
||
|
</div>
|
||
|
);
|
||
|
}
|