All files / app/locale withDate.tsx

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17146x   146x               146x   1761x     146x  
import { createInjectHoc, InjectHoc } from '../common/hoc';
 
import LocaleContext from './LocaleContext';
 
export interface WithDateProps {
    date: {
        inputFormat: string;
    };
}
 
const withDate: InjectHoc<WithDateProps> = createInjectHoc(LocaleContext, {
    displayNamePrefix: 'withDate',
    pickProps: (value, key) => key === 'date' && !!value,
});
 
export default withDate;