20 lines
506 B
TypeScript
20 lines
506 B
TypeScript
|
|
/**
|
||
|
|
* ConfigPage — placeholder for M2-T08.
|
||
|
|
*
|
||
|
|
* T08 replaces this with the real config UI: all config sections rendered as editable
|
||
|
|
* fields, secret masking, save button (PUT /api/config), and SMTP test action.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { Container, Title, Text } from '@mantine/core'
|
||
|
|
|
||
|
|
export function ConfigPage() {
|
||
|
|
return (
|
||
|
|
<Container pt="xl">
|
||
|
|
<Title order={2}>Configuration</Title>
|
||
|
|
<Text c="dimmed" mt="sm">
|
||
|
|
Config editor — implemented in M2-T08.
|
||
|
|
</Text>
|
||
|
|
</Container>
|
||
|
|
)
|
||
|
|
}
|