mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-15 18:25:06 +01:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
|
export interface ButtonControlProps {
|
||
|
onClick?: () => void;
|
||
|
children?: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export function ButtonControl({ onClick, children }: ButtonControlProps) {
|
||
|
return <button onClick={onClick}>{children}</button>
|
||
|
}
|