Files
Schichtenplaner/frontend/src/pages/Settings/Settings.tsx

28 lines
764 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// frontend/src/pages/Settings/Settings.tsx
import React from 'react';
const Settings: React.FC = () => {
return (
<div>
<h1> Einstellungen</h1>
<div style={{
padding: '40px',
textAlign: 'center',
backgroundColor: '#f8f9fa',
borderRadius: '8px',
border: '2px dashed #dee2e6',
marginTop: '20px'
}}>
<div style={{ fontSize: '48px', marginBottom: '20px' }}></div>
<h3>System Einstellungen</h3>
<p>Hier können Sie Systemweite Einstellungen vornehmen.</p>
<p style={{ fontSize: '14px', color: '#6c757d' }}>
Diese Seite wird demnächst mit Funktionen gefüllt.
</p>
</div>
</div>
);
};
export default Settings;