aboutsummaryrefslogtreecommitdiff
path: root/components/ViewPort
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2023-08-28 21:33:44 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2023-08-28 21:33:44 -0500
commitf0c03a9b8e15387c4defd0a0e3e0298324406fae (patch)
tree564011d0265666953b17258954ff68614ff6566a /components/ViewPort
parent2f0439621cff059e414d67f6ce43a7a6c4de13bc (diff)
downloadhomepage-f0c03a9b8e15387c4defd0a0e3e0298324406fae.tar.xz
homepage-f0c03a9b8e15387c4defd0a0e3e0298324406fae.zip
Add wg2nd
Diffstat (limited to 'components/ViewPort')
-rw-r--r--components/ViewPort/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/ViewPort/index.tsx b/components/ViewPort/index.tsx
index 665ee00..29191a1 100644
--- a/components/ViewPort/index.tsx
+++ b/components/ViewPort/index.tsx
@@ -5,6 +5,7 @@ import clsx from 'clsx';
export type Props = {
size?: "sm" | "md" | "lg";
className?: string;
+ children?: React.ReactNode;
};
const Viewport : FC<Props> = ({children, className, size}) => {
@@ -20,4 +21,4 @@ const Viewport : FC<Props> = ({children, className, size}) => {
)
};
-export default Viewport; \ No newline at end of file
+export default Viewport;