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