import React from 'react' import Order from './order' import Login from './login' import Workflow from './workflow'; import ActionType from '../enums/ActionType'; export const Wiaas = (props) => { const getSidebarItemClass = actionType => { if (actionType === props.actionType) { return 'selected'; } return ''; }; return (