securityos/components/apps/Ruffle/index.tsx

11 lines
436 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import AppContainer from "components/apps/AppContainer";
import StyledRuffle from "components/apps/Ruffle/StyledRuffle";
import useRuffle from "components/apps/Ruffle/useRuffle";
import type { ComponentProcessProps } from "components/system/Apps/RenderComponent";
const Ruffle: FC<ComponentProcessProps> = ({ id }) => (
<AppContainer StyledComponent={StyledRuffle} id={id} useHook={useRuffle} />
);
export default Ruffle;