Skip to content

Instantly share code, notes, and snippets.

@ShekMak
Created February 21, 2022 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShekMak/d63db02e98f28f21869cdddee1219791 to your computer and use it in GitHub Desktop.
Save ShekMak/d63db02e98f28f21869cdddee1219791 to your computer and use it in GitHub Desktop.
import { NextPage } from 'next';
import React from 'react';
import AuthCheck from '../../components/AuthCheck';
import Todos from '../../components/Todos';
const IndexTodo: NextPage = () => {
return (
<AuthCheck>
<Todos/>
</AuthCheck>
);
}
export default IndexTodo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment