10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
import Header from '../components/Header';
|
|
|
|
export default function ConfigurationPage() {
|
|
return (
|
|
<>
|
|
<Header title="Конфигурация" />
|
|
</>
|
|
);
|
|
}
|