mirror of
https://github.com/Lissy93/web-check.git
synced 2025-04-02 20:27:22 +02:00
8 lines
135 B
TypeScript
8 lines
135 B
TypeScript
interface Props {
|
|
message: string,
|
|
};
|
|
|
|
const Demo = ({ message }: Props): JSX.Element => <div>{message}</div>;
|
|
|
|
export default Demo;
|