import React from 'react' export default function Button({ children, onClick }: { children: React.ReactNode; onClick: () => void }) { return ( ) }