瀏覽代碼

remove layout

AykutSarac 3 年之前
父節點
當前提交
13f863c108
共有 1 個文件被更改,包括 0 次插入16 次删除
  1. 0 16
      src/components/Layout/index.tsx

+ 0 - 16
src/components/Layout/index.tsx

@@ -1,16 +0,0 @@
-import React from "react";
-import styled from "styled-components";
-import Navbar from "../Navbar";
-
-const StyledLayout = styled.div`
-  padding: 24px;
-`;
-
-export const Layout: React.FC = ({ children }) => {
-  return (
-    <StyledLayout>
-      <Navbar />
-      {children}
-    </StyledLayout>
-  );
-};