소스 검색

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>
-  );
-};