Skip to content
Snippets Groups Projects
Forked from 2024 Competition / Bielefeld-CeBiTec
917 commits behind the upstream repository.
project-documentation.tsx 258 B
import { Calendar } from "../components/Calendar/Calendar";
import { useTabNavigation } from "../utils/TabNavigation";


export function ProDesc() {
  useTabNavigation();
    return (
      <div className="col">
        <Calendar/>
      </div>
    );
  }