```js function Editor({ data: { page } }: EditorProps) { if (page == null) throw Error('missing page data in editor') const [editorValue, setEditorValue] = useState(() => { } ``` I believe this should be a valid case, because throw.