mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-15 10:31:53 +08:00
14 lines
383 B
Dart
14 lines
383 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'component/import_csv/import_csv_component.dart';
|
|
|
|
class ImportCSVPage extends StatelessWidget {
|
|
const ImportCSVPage({Key? key}) : super(key: key);
|
|
|
|
/// The name of the route to the [ImportCSVPage] screen.
|
|
static const routeName = '/import/csv';
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const ImportCSVComponent();
|
|
}
|