import { useBackend } from '../backend'; import { Button, Divider, Section, Table } from '../components'; import { Window } from '../layouts'; type Data = { device_theme: string; filter: string; pages: number; ckeys: { name: string; desc: string }[]; }; export const PlayerNotes = (props, context) => { const { act, data } = useBackend(context); const { device_theme, filter, pages, ckeys } = data; const runCallback = (cb) => { return cb(); }; return (
act('show_player_info', { name: value, }) } /> ); } return row; })}
); };