From b55dec34cd73b3581de3aff9fe5a047d51ca4635 Mon Sep 17 00:00:00 2001 From: yeicobF Date: Thu, 4 May 2023 11:04:25 -0600 Subject: [PATCH] Feat(twemoji): Create layout --- .../src/components/layout.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 fullstack/twitter-with-only-emojis-theo-t3-stack-tutorial/src/components/layout.tsx diff --git a/fullstack/twitter-with-only-emojis-theo-t3-stack-tutorial/src/components/layout.tsx b/fullstack/twitter-with-only-emojis-theo-t3-stack-tutorial/src/components/layout.tsx new file mode 100644 index 0000000..e73eeb6 --- /dev/null +++ b/fullstack/twitter-with-only-emojis-theo-t3-stack-tutorial/src/components/layout.tsx @@ -0,0 +1,11 @@ +import { type PropsWithChildren } from "react"; + +export const PageLayout = (props: PropsWithChildren) => { + return ( +
+
+ {props.children} +
+
+ ); +};