mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
11 lines
227 B
Dart
11 lines
227 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CreateNewRoutineView extends StatelessWidget {
|
|
const CreateNewRoutineView({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Placeholder();
|
|
}
|
|
}
|