mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-10 15:36:49 +02:00
Add eslint import rules
This commit is contained in:
parent
6717b3ca48
commit
c5c2816c3d
49 changed files with 139 additions and 79 deletions
|
@ -1,15 +1,17 @@
|
|||
import Link from "next/link";
|
||||
import * as React from "react";
|
||||
import Github from "./home/github.svg";
|
||||
import Logo from "../public/logo.svg";
|
||||
import Footer from "./page-layout/footer";
|
||||
import Head from "next/head";
|
||||
import { useRouter } from "next/router";
|
||||
import clsx from "clsx";
|
||||
import DotsVertical from "@/components/icons/dots-vertical.svg";
|
||||
import dynamic from "next/dynamic";
|
||||
import Head from "next/head";
|
||||
import Link from "next/link";
|
||||
import { useRouter } from "next/router";
|
||||
import * as React from "react";
|
||||
import { createBreakpoint } from "react-use";
|
||||
|
||||
import DotsVertical from "@/components/icons/dots-vertical.svg";
|
||||
|
||||
import Logo from "../public/logo.svg";
|
||||
import Github from "./home/github.svg";
|
||||
import Footer from "./page-layout/footer";
|
||||
|
||||
const Popover = dynamic(() => import("./popover"), { ssr: false });
|
||||
export interface PageLayoutProps {
|
||||
children?: React.ReactNode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue