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 StyledQuake3 from "components/apps/Quake3/StyledQuake3";
|
|
import useQuake3 from "components/apps/Quake3/useQuake3";
|
|
import AppContainer from "components/system/Apps/AppContainer";
|
|
import { type ComponentProcessProps } from "components/system/Apps/RenderComponent";
|
|
|
|
const Quake3: FC<ComponentProcessProps> = ({ id }) => (
|
|
<AppContainer StyledComponent={StyledQuake3} id={id} useHook={useQuake3} />
|
|
);
|
|
|
|
export default Quake3;
|