لدي مكون مركب بسيط مع مجموعة من المكونات الفرعية الثابتة: // @flow
import React, { Component, Children } from 'react';
type Props = {
children: React.ChildrenArray<React.Node> | React.Node,
}
class Toggle extends Component<Props> {
static On = props => (props.on ? props.childre...
15.07.2018, 12:59