Files
react-native-web/performance/implementations/css-modules/View/index.js
2017-03-02 18:59:33 -08: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;