diff --git a/lib/app_component.dart b/lib/app_component.dart index 2ea152e..cf77c3c 100644 --- a/lib/app_component.dart +++ b/lib/app_component.dart @@ -5,19 +5,6 @@ import 'package:rules_of_living/src/App.dart'; @Component( selector: 'my-app', - template: ''' -

Cellular Automata - The Rules of Life

-
- -
-
- - - - - -
- ''', ) class AppComponent implements OnInit { var name = "World"; diff --git a/lib/app_component.html b/lib/app_component.html new file mode 100644 index 0000000..95d1c96 --- /dev/null +++ b/lib/app_component.html @@ -0,0 +1,14 @@ +

Cellular Automata - The Rules of Life

+
+ Ruleset: +
+
+ +
+
+ + + + + Speed: +
\ No newline at end of file diff --git a/lib/src/App.dart b/lib/src/App.dart index aa53e04..10e590d 100644 --- a/lib/src/App.dart +++ b/lib/src/App.dart @@ -1,6 +1,5 @@ import 'dart:html' as html; -import 'package:rules_of_living/src/Cell.dart'; import 'package:rules_of_living/src/Grid.dart'; class App {