We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deec603 commit 35e5e29Copy full SHA for 35e5e29
dev/pages/demo/+Page.tsx
@@ -18,9 +18,10 @@ export default function DemoPage() {
18
title: getTitle("Demo"),
19
});
20
21
- const [selectedDemoValue, setSelectedValueDemo] = createSignal<{ value: string; label: string }>(
22
- null
23
- );
+ const [selectedDemoValue, setSelectedValueDemo] = createSignal<{
+ value: string;
+ label: string;
24
+ } | null>(null);
25
26
const [values, setValues] = createStore({
27
template: "",
0 commit comments