chore: cleanup
This commit is contained in:
parent
0e725b065a
commit
f5ac34e639
17 changed files with 67 additions and 3 deletions
16
ImageBoardServerApp/Pages/Boards/B.razor
Normal file
16
ImageBoardServerApp/Pages/Boards/B.razor
Normal file
|
@ -0,0 +1,16 @@
|
|||
@page "/b/"
|
||||
@using System.ComponentModel.DataAnnotations
|
||||
@using ImageBoardServerApp.Data
|
||||
|
||||
<Board board="@b"/>
|
||||
|
||||
@code {
|
||||
|
||||
private BoardData b { get; set; } = new()
|
||||
{
|
||||
BoardID = 0,
|
||||
maxThreads = 10,
|
||||
Tag = "b",
|
||||
Topic = "Random"
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue