Files
TubeCards/lib/modules/import_excel/import_excel_page.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

14 lines
397 B
Dart

import 'package:flutter/material.dart';
import 'component/import_excel/import_excel_component.dart';
class ImportExcelPage extends StatelessWidget {
const ImportExcelPage({Key? key}) : super(key: key);
/// The name of the route to the [ImportExcelPage] screen.
static const routeName = '/import/excel';
@override
Widget build(BuildContext context) => const ImportExcelComponent();
}