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} +
+
) }