mirror of https://github.com/openspug/spug
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
/**
|
|
* Copyright (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
* Copyright (c) <spug.dev@gmail.com>
|
|
* Released under the MIT License.
|
|
*/
|
|
import { lazy } from 'react';
|
|
import { makeRoute } from 'libs/router';
|
|
|
|
export default [
|
|
makeRoute('', lazy(() => import('./index'))),
|
|
]
|