Skip to content

Commit d455d6a

Browse files
first commit
0 parents  commit d455d6a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+3496
-0
lines changed

.gitignore

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
# .NET Core build artifacts
2+
bin/
3+
obj/
4+
*.user
5+
*.userosscache
6+
*.suo
7+
*.dll
8+
*.exe
9+
*.pdb
10+
*.cache
11+
*.CopyComplete
12+
*.targets
13+
*.props
14+
15+
# User-specific files
16+
*.rsuser
17+
*.user
18+
*.userosscache
19+
*.sln.docstates
20+
21+
# Visual Studio files
22+
.vs/
23+
.vscode/
24+
*_i.c
25+
*_p.c
26+
*_h.h
27+
*.ilk
28+
*.meta
29+
*.obj
30+
*.iobj
31+
*.pch
32+
*.pdb
33+
*.ipdb
34+
*.pgc
35+
*.pgd
36+
*.rsp
37+
*.sbr
38+
*.tlb
39+
*.tli
40+
*.tlh
41+
*.tmp
42+
*.tmp_proj
43+
*_wpftmp.csproj
44+
*.log
45+
*.vspscc
46+
*.vssscc
47+
.builds
48+
*.pidb
49+
*.svclog
50+
*.scc
51+
52+
# Blazor WebAssembly
53+
wwwroot/_framework/
54+
55+
# Build artifacts
56+
[Dd]ebug/
57+
[Dd]ebugPublic/
58+
[Rr]elease/
59+
[Rr]eleases/
60+
x64/
61+
x86/
62+
[Ww][Ii][Nn]32/
63+
[Aa][Rr][Mm]/
64+
[Aa][Rr][Mm]64/
65+
bld/
66+
[Bb]in/
67+
[Oo]bj/
68+
[Ll]og/
69+
[Ll]ogs/
70+
71+
# Publish output
72+
publish/
73+
**/[Pp]ublish/[Pp]rofiles/
74+
**/[Pp]roperties/[Pp]ublishProfiles/
75+
**/[Pp]roperties/ServiceDependencies/
76+
77+
# NuGet Packages
78+
*.nupkg
79+
# NuGet Symbol Packages
80+
*.snupkg
81+
# The packages folder can be ignored because of Package Restore
82+
**/[Pp]ackages/*
83+
# except build/, which is used as an MSBuild target.
84+
!**/[Pp]ackages/build/
85+
# NuGet v3's project.json files produces more ignoreable files
86+
*.nuget.props
87+
*.nuget.targets
88+
89+
# macOS specific files
90+
.DS_Store
91+
.AppleDouble
92+
.LSOverride
93+
._*
94+
95+
# Windows specific files
96+
Thumbs.db
97+
ehthumbs.db
98+
Desktop.ini
99+
100+
# IDE files
101+
.idea/
102+
*.swp
103+
*.swo

App.razor

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Router AppAssembly="@typeof(App).Assembly">
2+
<Found Context="routeData">
3+
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
4+
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
5+
</Found>
6+
<NotFound>
7+
<PageTitle>Not found</PageTitle>
8+
<LayoutView Layout="@typeof(MainLayout)">
9+
<p role="alert">Sorry, there's nothing at this address.</p>
10+
</LayoutView>
11+
</NotFound>
12+
</Router>

0 commit comments

Comments
 (0)