Skip to content

Instantly share code, notes, and snippets.

@albertBarsegyan
Created April 25, 2022 21:33
Show Gist options
  • Save albertBarsegyan/2ed1493b37688cf06cd79e8a8921ad32 to your computer and use it in GitHub Desktop.
Save albertBarsegyan/2ed1493b37688cf06cd79e8a8921ad32 to your computer and use it in GitHub Desktop.
task-home-page
import Head from "next/head";
import MainLayout from "../src/components/layout/mainLayout";
import Footer from "../src/components/layout/footer";
import UserTableContainer from "../src/components/containers/usertableContainer";
export default function Home() {
return (
<div>
<Head>
<title>Task</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<MainLayout>
<UserTableContainer />
<Footer />
</MainLayout>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment