mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2024-11-24 17:23:43 +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>
|
|
);
|
|
} |