import { useBackend } from '../backend'; import { Button, LabeledList, Section } from '../components'; import { Window } from '../layouts'; export const PetrificationInterface = (props, context) => { const { act, data } = useBackend(context); const { material, identifier, adjective, tint, t, able_to_unpetrify, discard_clothes, target, can_remote } = data; return (
); };