React Team

From Wiki
Revision as of 13:02, 2 July 2020 by Greg (talk | contribs) (Created page with "Demo React Team == Étapes == * http://code.sitegb.com/react/demo-teams/gabarit-react.html Gabarit bootstrap avec une seule fonction react <syntaxhighlight lang="xml"> <pre...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Demo React Team

Étapes[edit]

Gabarit bootstrap avec une seule fonction react

<syntaxhighlight lang="xml">

  function App(props) {
    return <div> ....

  ReactDOM.render(
      <div>
        <App />
      </div>,
      document.getElementById('app')
    );

<syntaxhighlight>