mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-01-25 16:48:18 +00:00
8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
const Button = ({ onClick, text }: any) => (
|
|
<button className={'some-className'} onClick={onClick}>
|
|
{text}
|
|
</button>
|
|
)
|
|
|
|
export default Button
|