export const scoringSelectionValidation = () =>
    // const errors = {}
    /* validation logic here, return boolean/errors object*/

     true
;


export const dataInputValidation = () =>
    // const errors = {}
    /* validation logic here, return boolean/errors object*/

     true
;

export const scoringInputValidation = () =>
    // const errors = {}
    /* validation logic here, return boolean/errors object*/

     true
;

export const otherValidation = () =>
    // const errors = {}
    /* validation logic here, return boolean/errors object*/

     true
;
