yoneda
5/4/2019 - 1:34 PM

react-ts-stateless-functional-component

import * as React from "react";

export interface Props {
  text: string;
}

const Test: React.FC<Props> = ({ text }:Props) => {
  return(
    <div>{text}</div>
  )
}

export default Test;