From 608cef5827d31fc0c8b97ccf00dba1c23230e7df Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Tue, 2 Sep 2025 10:35:53 +0800 Subject: [PATCH] Fixed unnecessary styling --- fwt/components/Row/Row.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/fwt/components/Row/Row.tsx b/fwt/components/Row/Row.tsx index feb34a5..f5d1b97 100644 --- a/fwt/components/Row/Row.tsx +++ b/fwt/components/Row/Row.tsx @@ -1,5 +1,5 @@ import './Row.sass' -// import { Switch, Match } from 'solid-js' +import { Show } from 'solid-js' interface Props { children: any @@ -10,9 +10,17 @@ interface Props { export default (props: Props) => { return ( <> -
- {props.children} -
+ +
+ {props.children} +
+
+ + +
+ {props.children} +
+
) }