Skip to content

Instantly share code, notes, and snippets.

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