mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
11 lines
433 B
TypeScript
11 lines
433 B
TypeScript
import StyledRuffle from "components/apps/Ruffle/StyledRuffle";
|
|
import useRuffle from "components/apps/Ruffle/useRuffle";
|
|
import AppContainer from "components/system/Apps/AppContainer";
|
|
import { type ComponentProcessProps } from "components/system/Apps/RenderComponent";
|
|
|
|
const Ruffle: FC<ComponentProcessProps> = ({ id }) => (
|
|
<AppContainer StyledComponent={StyledRuffle} id={id} useHook={useRuffle} />
|
|
);
|
|
|
|
export default Ruffle;
|