mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-18 14:12:32 +00:00
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
import { useBackend } from '../../backend';
|
|
import { PowerMonitorContent } from '../PowerMonitor';
|
|
|
|
export const pda_power = (props, context) => {
|
|
const { act, data } = useBackend(context);
|
|
|
|
return <PowerMonitorContent />;
|
|
};
|