10 lines
215 B
Rust
10 lines
215 B
Rust
|
use jl_types::domain::project::Project;
|
||
|
use yew::prelude::*;
|
||
|
|
||
|
#[function_component(ProjectCard)]
|
||
|
pub fn project_card(_props: &Project) -> Html {
|
||
|
|
||
|
html!{
|
||
|
<div class={"project-listing-card"}></div>
|
||
|
}
|
||
|
}
|