10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
interface Props {
|
|
content: string;
|
|
}
|
|
|
|
const Text: React.FC<Props> = ({ content }: Props) => {
|
|
return <span>{content}</span>;
|
|
};
|
|
|
|
export default Text;
|