import React from 'react'; import { ReactComponent as Emptyimage } from 'assets/images/empty.svg'; import PropTypes from 'prop-types'; import style from './Empty.module.scss'; export default function Empty(props) { const { text, ...rest } = props; return (
{text}
); } Empty.propTypes = { text: PropTypes.string, }