theforeman/foreman

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

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

import HostsIndex from '../../components/HostsIndex';
import { HOSTS_PATH } from './constants';

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