mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-20 12:03:11 -04:00
9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
import { routes as settingsRoutes } from './Settings';
|
|
import { routes as profileRoutes } from './Profile';
|
|
|
|
export default {
|
|
...settingsRoutes,
|
|
// ensure profile routes are last else they hijack other routes
|
|
...profileRoutes
|
|
};
|