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