theforeman/foreman

View on GitHub
webpack/assets/javascripts/react_app/routes/RegistrationCommands/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import RegistrationCommandsPage from './RegistrationCommandsPage';
import { REGISTRATION_PATH } from './constants';

export default {
  path: REGISTRATION_PATH,
  render: props => <RegistrationCommandsPage {...props} />,
  exact: true,
};