Rename benchmark script

This commit is contained in:
Nicolas Gallagher
2017-07-22 10:45:04 -07:00
parent 7f81e313ed
commit 1364b1dfdf
5 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/* eslint-disable react/prop-types */
import Radium from 'radium'
import Radium from 'radium';
import React from 'react';
import View from '../View/radium';

View File

@@ -1,11 +1,11 @@
/* eslint-disable react/prop-types */
import Radium from 'radium'
import Radium from 'radium';
import React from 'react';
class View extends React.Component {
render() {
const { style, ...other } = this.props;
return <div {...other} style={[styles.root, style]} />
return <div {...other} style={[styles.root, style]} />;
}
}