9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import Setup from '@app/components/Setup';
|
|
import type { NextPage } from 'next';
|
|
|
|
const SetupPage: NextPage = () => {
|
|
return <Setup />;
|
|
};
|
|
|
|
export default SetupPage;
|