diff --git a/react/src/App.tsx b/react/src/App.tsx index b5b5775..67ccd3d 100644 --- a/react/src/App.tsx +++ b/react/src/App.tsx @@ -11,6 +11,8 @@ import { BalCardTitle, BalCardSubtitle, BalCardContent, + BalText, + BalButton, } from "@baloise/design-system-components-react"; import { onBalConfigChange, @@ -43,6 +45,7 @@ function App() { } }); }); + const [foo, setFoo] = React.useState("foo"); return ( @@ -64,6 +67,12 @@ function App() {
+ + {foo} + setFoo(undefined)}>Set Undefined + setFoo("Bar")}>Set Bar + {undefined} + Property example