Skip to content

Instantly share code, notes, and snippets.

@ShekMak
Created February 21, 2022 19:04
Embed
What would you like to do?
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