cpd_2022_zi/lib/pages/mood_page.dart

14 lines
284 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2023-02-15 23:02:29 +01:00
import 'package:smoke_cess_app/widgets/mood_form.dart';
class MoodPage extends StatelessWidget {
const MoodPage({super.key});
@override
Widget build(BuildContext context) {
2023-02-15 23:02:29 +01:00
return const Center(
child: MoodForm(),
);
}
}