web-check/src/components/Demo.tsx
2022-06-11 22:30:46 +01:00

8 lines
135 B
TypeScript

interface Props {
message: string,
};
const Demo = ({ message }: Props): JSX.Element => <div>{message}</div>;
export default Demo;