use crate::section::Section; use leptos::{component, view, Children, For, IntoView}; #[component] #[must_use] pub fn PersonalExperience(children: Children) -> impl IntoView { view! {
{children()}
} } #[component] #[must_use] pub fn Project(title: &'static str, achievements: Vec<&'static str>) -> impl IntoView { view! {

{title}

} }