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.
2 parents d7bc9a5 + 51e54fe commit afc27a9Copy full SHA for afc27a9
apps/docs/pages/guides/getting-started/tutorials/with-solidjs.mdx
@@ -134,9 +134,9 @@ interface Props {
134
135
const Account: Component<Props> = ({ session }) => {
136
const [loading, setLoading] = createSignal(true)
137
- const [username, setUsername] = (createSignal < string) | (null > null)
138
- const [website, setWebsite] = (createSignal < string) | (null > null)
139
- const [avatarUrl, setAvatarUrl] = (createSignal < string) | (null > null)
+ const [username, setUsername] = createSignal<string | null>(null)
+ const [website, setWebsite] = createSignal<string | null>(null)
+ const [avatarUrl, setAvatarUrl] = createSignal<string | null>(null)
140
141
createEffect(() => {
142
getProfile()
0 commit comments