diff --git a/src/components/PageWrapper/PageWrapper.jsx b/src/components/PageWrapper/PageWrapper.jsx new file mode 100644 index 00000000..aeca989d --- /dev/null +++ b/src/components/PageWrapper/PageWrapper.jsx @@ -0,0 +1,33 @@ +import { XStack, styled } from "tamagui"; + +const Background = styled("div", { + display: "flex", + justifyContent: "center", + backgroundColor: "white", + width: "100vw", +}); + +const PageWrapper = ({ children, ...props }) => { + return ( + + + {children} + + + ); +}; + +export { PageWrapper }; diff --git a/src/components/PageWrapper/index.jsx b/src/components/PageWrapper/index.jsx new file mode 100644 index 00000000..7f919097 --- /dev/null +++ b/src/components/PageWrapper/index.jsx @@ -0,0 +1 @@ +export { PageWrapper } from "./PageWrapper";