10 lines
161 B
TypeScript
10 lines
161 B
TypeScript
import { NextPage } from "next";
|
|
|
|
import React from "react";
|
|
|
|
const ComingSoon: NextPage = () => {
|
|
return <h1>Coming Soon</h1>;
|
|
};
|
|
|
|
export default ComingSoon;
|