# [FEAT]: Add "Partial" to the Qwik capabilities https://github.com/BuilderIO/qwik/issues/435 ```typescript= export Static = component$((props) => { return <div> {props.a}/{props.b.c} <Child/> </div> }); export Child = component$(() => { }); ``` ```typescript= export const App = component$((props) => { const state2 = useStore(() => ({ count: 0 })); return ( <div onClick$={() => state2.count++}>{props.name}</div> ) }); ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up