import { Component } from 'solid-js'; import cache from '../../lib/cache'; import Tree from '../tree'; interface Props { gpxId: string; } const GpxViewer: Component = ({ gpxId }) => { const gpx = cache.get({ cacheId: 'signals', key: gpxId }); console.log({ caller: 'GpxViewer', gpx: gpx() }); const title = () => {}; return ; }; export default GpxViewer;