mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2024-11-10 18:36:33 +03:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import type { NextPage } from 'next'
|
||
import Head from 'next/head'
|
||
import Image from 'next/image'
|
||
import styles from '../styles/Home.module.css'
|
||
import { Search } from '../сomponents/search'
|
||
import 'antd/dist/antd.css';
|
||
import { useState } from 'react'
|
||
import { TagSearch } from '../сomponents/tagSearch'
|
||
import {useAppDispatch, useAppSelector} from '../hooks';
|
||
import {search, createHints} from '../store/reducers/asyncActions';
|
||
import {products, hints, INode} from '../store/reducers/nodesInputReducer'
|
||
import { ProductsView } from '../сomponents/ProductsView'
|
||
|
||
const Home: NextPage = () => {
|
||
const [goods, setGoods] = useState([]);
|
||
const dispatch = useAppDispatch();
|
||
const getProducts = useAppSelector(products);
|
||
const getHints = useAppSelector(hints);
|
||
|
||
|
||
// if (getProducts.length == 0) {
|
||
// dispatch(
|
||
// search([
|
||
// {
|
||
// 'type': 'Name',
|
||
// 'value': 'Сапоги'
|
||
// }
|
||
// ])
|
||
// )
|
||
// }
|
||
// console.log(getProducts)
|
||
// - вызов поиска
|
||
//
|
||
|
||
return (
|
||
<div className={styles.container}>
|
||
<Search onData={(data)=>setGoods(data)}></Search>
|
||
<ProductsView></ProductsView>
|
||
</div>
|
||
)
|
||
}
|
||
|
||
export default Home
|