10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
import { AppSettingsComponentsMap } from "@calcom/app-store/apps.browser.generated";
|
|
|
|
import { DynamicComponent } from "./DynamicComponent";
|
|
|
|
export const AppSettings = (props: { slug: string }) => {
|
|
return (
|
|
<DynamicComponent<typeof AppSettingsComponentsMap> componentMap={AppSettingsComponentsMap} {...props} />
|
|
);
|
|
};
|