mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
18 lines
525 B
TypeScript
18 lines
525 B
TypeScript
import React from "react";
|
|
import PageLayout from "@site/src/components/PageLayout";
|
|
import XmlView from "@site/src/components/XmlView";
|
|
|
|
function ConfigPage(): JSX.Element {
|
|
return (
|
|
<PageLayout
|
|
title="Validator configuration"
|
|
layoutDescription="The currently loaded validator configuration"
|
|
headline="Validator configuration"
|
|
description="View the currently loaded validator configuration."
|
|
>
|
|
<XmlView endpoint="/server/config" fileName="config.xml" />
|
|
</PageLayout>
|
|
);
|
|
}
|
|
|
|
export default ConfigPage;
|