import * as React from 'react' import { Routes, Route, Link } from 'react-router-dom' import Basic from './basic' import DarkMode from './dark-mode' import ReadOnly from './readonly' import PropsControl from './props-control' import ApiControl from './api-control' import LoadingFiles from './loading-files' import Embedded from './embedded' import NoSizeEmbedded from './no-size-embedded' import ChangingId from './changing-id' import Persisted from './persisted' import Develop from './develop' import Api from './api' import Scroll from './scroll' import FileSystem from './file-system' import UIOptions from './ui-options' import { Multiplayer } from './multiplayer' import { Multiplayer as MultiplayerWithImages } from './multiplayer-with-images' import './styles.css' import Export from '~export' const pages: ({ path: string; component: any; title: string } | '---')[] = [ { path: '/develop', component: Develop, title: 'Develop' }, '---', { path: '/basic', component: Basic, title: 'Basic' }, { path: '/dark-mode', component: DarkMode, title: 'Dark mode' }, { path: '/ui-options', component: UIOptions, title: 'Customizing user interfcace' }, { path: '/persisted', component: Persisted, title: 'Persisting state with an ID' }, { path: '/loading-files', component: LoadingFiles, title: 'Using the file system' }, { path: '/file-system', component: FileSystem, title: 'Loading files' }, { path: '/api', component: Api, title: 'Using the TldrawApp API' }, { path: '/readonly', component: ReadOnly, title: 'Readonly mode' }, { path: '/controlled', component: PropsControl, title: 'Controlled via props' }, { path: '/imperative', component: ApiControl, title: 'Controlled via the TldrawApp API' }, { path: '/changing-id', component: ChangingId, title: 'Changing ID' }, { path: '/embedded', component: Embedded, title: 'Embedded' }, { path: '/no-size-embedded', component: NoSizeEmbedded, title: 'Embedded (without explicit size)', }, { path: '/export', component: Export, title: 'Export' }, { path: '/scroll', component: Scroll, title: 'In a scrolling container' }, { path: '/multiplayer', component: Multiplayer, title: 'Multiplayer' }, { path: '/multiplayer-with-images', component: MultiplayerWithImages, title: 'Multiplayer (with images)', }, ] export default function App() { return (
{pages.map((page) => page === '---' ? null : ( } /> ) )}
    {pages.map((page, i) => page === '---' ? (
    ) : (
  • {page.title}
  • ) )}
} />
) }