2022-10-15 10:05:14 +00:00
|
|
|
import { AppSettingsComponentsMap } from "@calcom/app-store/apps.browser.generated";
|
2022-10-15 08:05:37 +00:00
|
|
|
|
|
|
|
import { DynamicComponent } from "./DynamicComponent";
|
|
|
|
|
|
|
|
export const AppSettings = (props: { slug: string }) => {
|
2022-10-15 10:05:14 +00:00
|
|
|
return (
|
2022-10-15 17:08:01 +00:00
|
|
|
<DynamicComponent<typeof AppSettingsComponentsMap>
|
2022-11-06 16:09:10 +00:00
|
|
|
wrapperClassName="border-t border-gray-200 bg-gray-100"
|
2022-10-15 17:08:01 +00:00
|
|
|
componentMap={AppSettingsComponentsMap}
|
|
|
|
{...props}
|
|
|
|
/>
|
2022-10-15 10:05:14 +00:00
|
|
|
);
|
2022-10-15 08:05:37 +00:00
|
|
|
};
|