mirror of
https://github.com/johrpan/memor.git
synced 2025-10-28 03:07:25 +01:00
12 lines
164 B
Dart
12 lines
164 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
import 'backend.dart';
|
|
import 'app.dart';
|
|
|
|
void main() {
|
|
runApp(
|
|
MemorBackend(
|
|
child: MemorApp(),
|
|
),
|
|
);
|
|
}
|