11 lines
158 B
Rust
11 lines
158 B
Rust
use yew::prelude::*;
|
|
|
|
#[function_component(News)]
|
|
pub fn news() -> Html {
|
|
html! {
|
|
<div>
|
|
<h1>{"News Page"}</h1>
|
|
</div>
|
|
}
|
|
}
|