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