Add Personal Info

This commit is contained in:
Florian RICHER 2023-04-02 15:34:36 +02:00
parent 88f8d83317
commit 384e2fbc2c
7 changed files with 59 additions and 14 deletions

View 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>
}
}