fido-node.github.io/components/Button.tsx
2021-04-28 10:16:22 +03:00

8 lines
158 B
TypeScript

import * as React from 'react';
type Props = {
text: string;
};
export default ({ text }: Props) => <button className={'border rounded'}>{text}</button>;