2023-02-14 14:02:26 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2023-02-16 12:00:02 +01:00
|
|
|
import 'package:smoke_cess_app/widgets/sleep_form.dart';
|
2023-02-14 14:02:26 +01:00
|
|
|
|
|
|
|
class SleepPage extends StatelessWidget {
|
|
|
|
const SleepPage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-02-16 12:00:02 +01:00
|
|
|
return const Center(child: SleepForm());
|
2023-02-14 14:02:26 +01:00
|
|
|
}
|
|
|
|
}
|