WikiEducationFoundation/WikiEduDashboard

View on GitHub
app/assets/javascripts/components/overview/my_articles/step_processes/index.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import assignments from './assignments';
import reviews from './reviews';

export default (assignment, course) => {
  return assignment.role === 0 ? assignments(assignment, course) : reviews(assignment);
};