mirror of
https://github.com/rive-app/rive-react.git
synced 2026-03-13 08:22:30 +08:00
8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import React from 'react';
|
|
|
|
export const Button = ({onClick, children}) => {
|
|
return (
|
|
<button className="btn" onClick={onClick}>{children}</button>
|
|
);
|
|
};
|