<!doctype html>
<html lang="en">
	<head>
		<title>Hello page</title>
	</head>
	<body>
		<can-import from="test/progressive/state" export-as="viewModel"/>

		<can-import from="test/progressive/foo">
			{{#if isResolved}}
				<span id="bundles">{{scope.root.bundles()}}</span>
			{{/if}}
		</can-import>

		{{#switch(env.NODE_ENV)}}
			{{#case "production"}}
				<script src="../../node_modules/steal/steal.production.js"></script>
			{{/case}}
			{{#default}}
				<script src="../../node_modules/steal/steal.js"></script>
			{{/default}}
		{{/switch}}
	</body>
</html>
