theforeman/foreman

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

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import HostStatuses from '../../components/HostStatuses';
import { HOST_STATUSES_PATH } from './constants';

export default {
  path: HOST_STATUSES_PATH,
  render: props => <HostStatuses {...props} />,
};