import * as React from "react"; export interface Props { text: string; } const Test: React.FC<Props> = ({ text }:Props) => { return( <div>{text}</div> ) } export default Test;