Add Personal Info
This commit is contained in:
parent
88f8d83317
commit
384e2fbc2c
7 changed files with 59 additions and 14 deletions
10
src/components/projects_list.rs
Normal file
10
src/components/projects_list.rs
Normal file
|
@ -0,0 +1,10 @@
|
|||
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>
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue