18 lines
437 B
JavaScript
18 lines
437 B
JavaScript
function ExercisesPage() {
|
|
return (
|
|
<div style={{ padding: '2rem' }}>
|
|
<div style={{ maxWidth: '1200px', margin: '0 auto' }}>
|
|
<h1>Übungsverwaltung</h1>
|
|
|
|
<div className="card" style={{ marginTop: '1.5rem' }}>
|
|
<p style={{ color: 'var(--text2)' }}>
|
|
Übungsverwaltung wird als nächstes implementiert
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ExercisesPage
|