-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Frontend): 🚧 Change WIP page to Unimplement error page
- Loading branch information
Showing
14 changed files
with
53 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
use leptos::*; | ||
|
||
// use crate::components::*; | ||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn About() -> impl IntoView { | ||
view! { <h1>About</h1> } | ||
view! { <Unimplemented /> } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
use leptos::*; | ||
|
||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn About() -> impl IntoView { | ||
view! { <h1>About</h1> } | ||
pub fn Contest() -> impl IntoView { | ||
view! { <Unimplemented /> } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
use leptos::*; | ||
|
||
// use crate::components::*; | ||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn Contests() -> impl IntoView { | ||
view! { <h1>Contest</h1> } | ||
view! { <Unimplemented /> } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ mod problem; | |
mod problems; | ||
mod rank; | ||
mod submission; | ||
mod contest; | ||
pub use pages::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use leptos::*; | ||
|
||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn ProblemDiscussion() -> impl IntoView { | ||
view! { <Unimplemented /> } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use leptos::*; | ||
|
||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn ProblemEducation() -> impl IntoView { | ||
view! { <Unimplemented /> } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
mod content; | ||
mod discussion; | ||
mod editor; | ||
mod education; | ||
mod problem; | ||
|
||
mod submission; | ||
pub use content::ProblemContent; | ||
pub use discussion::ProblemDiscussion; | ||
pub use editor::ProblemEditor; | ||
pub use education::ProblemEducation; | ||
pub use problem::ProblemRouter; | ||
pub use submission::ProblemSubmission; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use leptos::*; | ||
|
||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn ProblemSubmission() -> impl IntoView { | ||
view! { <Unimplemented /> } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
use leptos::*; | ||
|
||
// use crate::components::*; | ||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn Rank() -> impl IntoView { | ||
view! { <h1>Rank</h1> } | ||
view! { <Unimplemented /> } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
use leptos::*; | ||
|
||
// use crate::components::*; | ||
use crate::components::*; | ||
|
||
#[component] | ||
pub fn Submission() -> impl IntoView { | ||
view! { <h1>Submission</h1> } | ||
view! { <Unimplemented /> } | ||
} |