Files
JavaScriptServices/samples/react/ReactGrid/Views/Shared/_Layout.cshtml
2015-12-15 12:47:52 +00:00

15 lines
335 B
Plaintext
Executable File

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>ReactExample</title>
<link rel="stylesheet" href="/main.css" />
</head>
<body>
<div class="container">
@RenderBody()
</div>
@RenderSection("scripts", required: false)
</body>
</html>