Всем привет.
Есть такой блок кода:
chooseRenderContent = (stationType, data) => {
const {
studentResponses = [],
selectedSpResponses = [],
examinerResponses = [],
} = data;
switch (stationType) {
case 'BREAK':
return this.renderData('students', students, '100%');
default:
this.renderData('students', studentResponses);
this.renderData('simulated-patient', selectedSpResponses);
this.renderData('examinators', examinerResponses);
}
};
Как мне правильно прописать return в default блоке?
P.S кейсов будет больше