Files
CHOMPStation2/tgui/packages/tgui_ch/interfaces/pda/pda_manifest.js
2023-05-23 17:43:01 +02:00

14 lines
320 B
JavaScript

import { useBackend } from '../../backend';
import { Box } from '../../components';
import { CrewManifestContent } from '../CrewManifest';
export const pda_manifest = (props, context) => {
const { act, data } = useBackend(context);
return (
<Box color="white">
<CrewManifestContent />
</Box>
);
};