Files
react-native-web/performance/components/View/index.css-modules.js
2017-04-05 14:02:17 -07:00

9 lines
260 B
JavaScript

/* eslint-disable react/prop-types */
import classnames from 'classnames';
import React from 'react';
import styles from './styles.css';
const View = props => <div {...props} className={classnames(styles.initial, props.className)} />;
module.exports = View;