10 lines
No EOL
219 B
Rust
10 lines
No EOL
219 B
Rust
use yew::{function_component, Html, html};
|
|
|
|
use super::project::Project;
|
|
|
|
#[function_component(ProjectList)]
|
|
pub fn project_list() -> Html {
|
|
html! {
|
|
<Project name="Test" description="Test"></Project>
|
|
}
|
|
} |