humus-old/client/ui/index.js

16 lines
364 B
JavaScript

// 3rd party.
import React from 'react';
import {hot} from 'react-hot-loader/root';
// 1st party.
import Throughput from './throughput';
import WorldTime from './world-time';
const Ui = ({Parser, worldTime}) => {
return <React.Fragment>
<WorldTime worldTime={worldTime} />
<Throughput Parser={Parser} />
</React.Fragment>;
};
export default hot(Ui);