11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
import { Panel } from './Panels';
|
|
import { HeaderText } from './Text';
|
|
|
|
const Domain = (): JSX.Element => (
|
|
<Panel>
|
|
<HeaderText text="Domain Settings" />
|
|
</Panel>
|
|
);
|
|
|
|
export default Domain;
|