humus-old/client/ui/index.js
2019-04-14 00:24:21 -05:00

14 lines
282 B
JavaScript

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