theforeman/foreman

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

Summary

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

export default {
  path: HOST_DETAILS_PATH,
  render: props => <HostDetails {...props} />,
};