Browse Source

remove layout

AykutSarac 3 năm trước cách đây
mục cha
commit
13f863c108
1 tập tin đã thay đổi với 0 bổ sung16 xóa
  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>
-  );
-};