react-native-unit-components
Version:
Unit React Native components
16 lines (13 loc) • 379 B
text/typescript
import { LISTENERS } from '../../scripts/html/bodyScript';
import { UNCardActionComponentProps } from './UNCardActionComponent';
export const getCardActionParams = (props: UNCardActionComponentProps) => {
return `
card-id="${props.cardId}"
action="${props.action}"
`;
};
export const getCardActionScript = () => {
return `
${LISTENERS.requestRefresh}
`;
};