mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 14:38:12 +00:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
|
|
|
|
const DropdownSettingsPage = () => {
|
|
return (
|
|
<FeaturePlaceholder
|
|
title="Dropdown Settings"
|
|
description="Configure controlled dropdown options used across backoffice workflows."
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default DropdownSettingsPage;
|