1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
export interface TitleProps { setReady: (ready: boolean) => void; } export const Title = ({ setReady }: TitleProps) => { return ( <div style={{ textAlign: "center" }}> <h1>the abstraction engine</h1> <p>a game based on the lambda calculus</p> <br /> <hr /> <br /> <button onClick={() => setReady(true)}>ready</button> </div> ); };