diff --git a/src/components/PageWrapper.tsx b/src/components/PageWrapper.tsx deleted file mode 100644 index 0f1a45fb..00000000 --- a/src/components/PageWrapper.tsx +++ /dev/null @@ -1,43 +0,0 @@ -import { Stack, XStack, styled } from 'tamagui' -import { ReactNode } from 'react' - -const Background = styled(Stack, { - display: 'flex', - justifyContent: 'center', - backgroundColor: 'white', - width: '100vw', -}) - -type PageWrapperProps = { - children: ReactNode -} - -const PageWrapper = ({ children }: PageWrapperProps) => { - return ( - -
- - {children} - -
-
- ) -} - -export default PageWrapper