Skip to content

Instantly share code, notes, and snippets.

@ShekMak
Created February 21, 2022 19:24
Embed
What would you like to do?
import { NextPage } from 'next';
import React from 'react'
import AuthCheck from '../../components/AuthCheck';
import NewTodo from '../../components/NewTodo';
const Newtask: NextPage = () => {
return (
<AuthCheck>
<NewTodo />
</AuthCheck>
);
}
export default Newtask;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment