// Copyright (C) 2020 Intel Corporation // // SPDX-License-Identifier: MIT import React from 'react'; import { Link } from 'react-router-dom'; import Text from 'antd/lib/typography/Text'; import { Row, Col } from 'antd/lib/grid'; import Icon from '@ant-design/icons'; import { EmptyTasksIcon } from 'icons'; interface Props { notFound?: boolean; } export default function EmptyListComponent(props: Props): JSX.Element { const { notFound } = props; return (
{notFound ? ( No results matched your search... ) : ( <> No projects created yet ... To get started with your annotation project create a new one )}
); }