this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix lint

+2 -3
+2 -3
apps/nextjs/src/pages/index.tsx
··· 1 1 import { useState } from "react"; 2 - import type { NextPage } from "next"; 3 2 import Head from "next/head"; 4 3 5 - export const Home: NextPage = () => { 4 + export default function HomePage() { 6 5 const [count, setCount] = useState(0); 7 6 8 7 return ( ··· 18 17 </main> 19 18 </div> 20 19 ); 21 - }; 20 + }