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

9 lines
243 B
TypeScript
Raw Normal View History

2025-03-12 19:38:28 +08:00
import TrainPlanCreateForm from "./TrainPlanCreateForm";
export default function DailyLayout(){
return (
<div className="w-full h-[calc(100vh-100px)]">
<TrainPlanCreateForm></TrainPlanCreateForm>
</div>
)
}