interface CheckProps { text: string; } function Check(props: CheckProps): JSX.Element { return (
  • {props.text}
  • ) } export default Check;