9 lines
243 B
TypeScript
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>
|
||
|
)
|
||
|
}
|