How to include the FCC test CDN ( Bundle.js ) in my local react project?

An easy solution is to simply use ReactFCCtest

All you have to do is run
npm install react-fcctest
OR
yarn add react-fcctest

THEN place import ReactFCCtest from ‘react-fcctest’; at the top of your App.js file

LIKE THIS

import React, { Component } from 'react';
import ReactFCCtest from 'react-fcctest';
 
class App extends Component {
  render() {
    return (
      <div>
        <ReactFCCtest />
      </div>
    );
  }
};

export default App;
15 Likes