16 lines
342 B
HTML
16 lines
342 B
HTML
|
<!-- #docregion -->
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Dependency Injection</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<script type="application/dart" src="main.dart"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<my-app>Loading my-app ...</my-app>
|
||
|
<my-providers>Loading my-providers ...</my-providers>
|
||
|
</body>
|
||
|
|
||
|
</html>
|