From 251239f3a2d5b9bcdf6ded8db601f540e3c4049f Mon Sep 17 00:00:00 2001 From: creamwhip Date: Sun, 26 Mar 2023 19:24:02 +0800 Subject: [PATCH] remove footer --- src/layout/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/layout/index.tsx b/src/layout/index.tsx index 890d656..a18c182 100644 --- a/src/layout/index.tsx +++ b/src/layout/index.tsx @@ -1,6 +1,5 @@ import React, { useState } from 'react'; -import LayoutFooter from './components/layout-footer'; import LayoutHeader from './components/layout-header'; import LayoutSideNav from './components/layout-side-nav'; import { Body, LayoutContainer, Main } from './styled'; @@ -14,7 +13,6 @@ const LayoutView: React.FC = ({ children }) => {
{children}
- );