summaryrefslogtreecommitdiff
path: root/src/components/Title.tsx
blob: 99c7584d166a7e2eb55dd9b67267046a58ef77bd (plain)
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>
  );
};