mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +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
|