training_data/apps/web/src/components/models/trainPlan/TrainPlanLayout.tsx

9 lines
243 B
TypeScript

import TrainPlanCreateForm from "./TrainPlanCreateForm";
export default function DailyLayout(){
return (
<div className="w-full h-[calc(100vh-100px)]">
<TrainPlanCreateForm></TrainPlanCreateForm>
</div>
)
}