Remove linter warning for unused `export default function DummyPage` when using `expo-router`
import React from ‘react’; [… code …] export default function DummyPage(): React.JSX.Element { ^^^^^^^^^^^^^^ “Unused default export” [… code …] } How can I get rid of this (“Unused default export”) linter warning?? My IDE is Rider from JetBrains The expo-router has no problem navigating to this page, but the linter warning is something I […]