aboutsummaryrefslogtreecommitdiff
path: root/components/ViewPort
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2023-08-28 21:33:44 -0500
committerFurkan Sahin <furkan-dev@proton.me>2023-08-28 21:33:44 -0500
commit2a308fb5bec47aac0f59e074d793cec6e95db1c3 (patch)
treee8d8026ab7074ae1c273c819e049eb211309e04f /components/ViewPort
parenta0e64e73ef07c1cc3623d2712c483bf45884d350 (diff)
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;