mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-10 12:22:19 +03:00
6 lines
189 B
JavaScript
6 lines
189 B
JavaScript
import React from 'react'
|
|
import { Route } from 'react-router-dom'
|
|
import Personal from './personal/Personal'
|
|
|
|
export default [<Route exact path="/personal" render={() => <Personal />} />]
|