diff --git a/pages/app/page-layout.module.css b/pages/app/page-layout.module.css deleted file mode 100644 index cdea6ed..0000000 --- a/pages/app/page-layout.module.css +++ /dev/null @@ -1,8 +0,0 @@ -/* - Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - SPDX-License-Identifier: Apache-2.0 -*/ -.content { - padding-block: 20px; - padding-inline: 20px; -} diff --git a/pages/app/page-layout.tsx b/pages/app/page-layout.tsx deleted file mode 100644 index e5019b4..0000000 --- a/pages/app/page-layout.tsx +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. -// SPDX-License-Identifier: Apache-2.0 -import { ReactNode } from "react"; - -import classnames from "./page-layout.module.css"; - -export interface PageLayoutProps { - header?: ReactNode; - children?: ReactNode; -} - -export default function PageLayout({ children, header }: PageLayoutProps) { - return ( -
-
{header}
-
{children}
-
- ); -}