Skip to content

Commit

Permalink
Feat(twemoji): Create layout
Browse files Browse the repository at this point in the history
  • Loading branch information
yeicobF committed May 4, 2023
1 parent 9d5dfbb commit b55dec3
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { type PropsWithChildren } from "react";

export const PageLayout = (props: PropsWithChildren) => {
return (
<main className="flex h-screen justify-center">
<div className="h-full w-full overflow-auto border-x border-slate-400 md:max-w-2xl">
{props.children}
</div>
</main>
);
};

0 comments on commit b55dec3

Please sign in to comment.