mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
16 lines
494 B
Dart
16 lines
494 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_web/pages/auth/view/forget_password_web_page.dart';
|
|
import 'package:syncrow_web/utils/responsive_layout.dart';
|
|
|
|
class ForgetPasswordPage extends StatelessWidget {
|
|
const ForgetPasswordPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const ResponsiveLayout(
|
|
tablet: ForgetPasswordWebPage(),
|
|
desktopBody: ForgetPasswordWebPage(),
|
|
mobileBody: ForgetPasswordWebPage());
|
|
}
|
|
}
|