const Tag = ({ text }: { text: string }) => { return (
{text}
); }; export default Tag;