// Copyright (C) 2020 Intel Corporation // // SPDX-License-Identifier: MIT import React from 'react'; import { useHistory } from 'react-router'; import { Row, Col } from 'antd/lib/grid'; import Button from 'antd/lib/button'; import Input from 'antd/lib/input'; import Text from 'antd/lib/typography/Text'; interface VisibleTopBarProps { onSearch: (value: string) => void; searchValue: string; } export default function TopBarComponent(props: VisibleTopBarProps): JSX.Element { const { searchValue, onSearch } = props; const history = useHistory(); return ( <> Tasks ); }