mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-15 10:31:53 +08:00
14 lines
397 B
Dart
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();
|
|
}
|