Skip to content

Commit

Permalink
Add /ready page
Browse files Browse the repository at this point in the history
  • Loading branch information
qgerome committed Apr 12, 2022
1 parent 6fd987d commit b138f8b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/pages/ready.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { NextPageWithLayout } from "libs/types";

const ReadyPage: NextPageWithLayout = () => {
return <span>ok</span>;
};

ReadyPage.getLayout = (page) => page;

export default ReadyPage;

0 comments on commit b138f8b

Please sign in to comment.