mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-03-30 17:34:05 +08:00
9 lines
260 B
JavaScript
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;
|