mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-18 14:12:32 +00:00
14 lines
320 B
JavaScript
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>
|
|
);
|
|
};
|