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/export_csv/export_csv_component.dart';
|
|
|
|
class ExportCSVPage extends StatelessWidget {
|
|
const ExportCSVPage({Key? key}) : super(key: key);
|
|
|
|
/// The name of the route to the [ExportCSVPage] screen.
|
|
static const routeName = '/export/csv';
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const ExportCSVComponent();
|
|
}
|