···226226As Quartz components are just functions that return React components, you can compositionally use them in other Quartz components.
227227228228```tsx title="quartz/components/AnotherComponent.tsx"
229229-import YourComponent from "./YourComponent"
229229+import YourComponentConstructor from "./YourComponent"
230230231231export default (() => {
232232+ const YourComponent = YourComponentConstructor()
233233+232234 function AnotherComponent(props: QuartzComponentProps) {
233235 return (
234236 <div>