# [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> ) }); ```