index.js 197 Bytes
Newer Older
duanledexianxianxian's avatar
duanledexianxianxian committed
1 2 3 4 5 6 7
import React from 'react';
import { getVersion } from 'utils';
import styles from './index.less';

export default () => {
  return <div className={styles.root}>hello world {getVersion()}</div>;
};