mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-26 09:02:30 +00:00
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
import React from 'react';
|
|
|
|
const Workouts = () => (
|
|
<div className="p-6">
|
|
<h1 className="text-2xl font-bold mb-4">Workouts</h1>
|
|
<p className="text-gray-600">Workouts page under development</p>
|
|
</div>
|
|
);
|
|
|
|
export default Workouts; |