mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-16 15:22:25 +03:00
* Upgrade to CRA 4.0.3 * Try to fix tests. No lucky * Fix new ESLint errors * Fix JS tests and remove unwanted dependency. (#1106) * Fix tests * Fix lint * Remove React v16 workaround (fixed in v17) * Force eslint to break on warnings * Lint now needs to be called explicitly in the pipeline Co-authored-by: Yash Jipkate <34203227+YashJipkate@users.noreply.github.com>
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
import React from 'react'
|
|
import { Route } from 'react-router-dom'
|
|
import Personal from './personal/Personal'
|
|
|
|
const routes = [<Route exact path="/personal" render={() => <Personal />} />]
|
|
|
|
export default routes
|