mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-05-23 16:49:02 +08:00
Includes a 'css-modules' implementation of the nested trees to act as a baseline for comparison.
9 lines
262 B
JavaScript
9 lines
262 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;
|