Skip to content

Instantly share code, notes, and snippets.

@ShekMak
Created February 21, 2022 19:24
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/07b7c6074067692e7ca0d404ef89cbbc to your computer and use it in GitHub Desktop.
Save ShekMak/07b7c6074067692e7ca0d404ef89cbbc to your computer and use it in GitHub Desktop.
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