14 lines
279 B
Dart
14 lines
279 B
Dart
import 'package:app/pages/home/home_page.dart';
|
|
import 'package:app/router/config/router_config.dart';
|
|
|
|
import '../config/route_paths.dart';
|
|
|
|
List<RouterConfig> homeRoutes = [
|
|
RouterConfig(
|
|
path: RoutePaths.home,
|
|
child: (state) {
|
|
return HomePage();
|
|
},
|
|
)
|
|
];
|