Coding/BinaryDad.Coding/Pages/Index.cshtml

18 lines
233 B
Plaintext
Raw Normal View History

2021-07-19 00:56:02 +00:00
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
2021-07-19 01:24:08 +00:00
@section Scripts
{
<script src="~/js/signalr/dist/browser/signalr.js"></script>
<script src="~/js/hub.js"></script>
}
2021-07-19 00:56:02 +00:00
<div class="text-center">
2021-07-19 01:24:08 +00:00
2021-07-19 00:56:02 +00:00
</div>