CardNew has no definition behind it, which is where I suspect your error is coming from.
Try something like:
const CardNew = 'new';
export default CardNew;
export CardBody from './components/CardBody';
Furthermore, ./components/CardBody needs to export CardBody as its default. Otherwise that export expression should be written as
export { CardBody } from './components/CardBody';