If you create a template before calling the component life cycle hook (onInit, onDestroy), it won't work: ```tsx function App() { const template = <MyComponent />; onDestroy(() => {}); return ( <div>{template}</div> ); } ``` 