Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1.I am working on React.js. I worte simple code in App.js and All data presented must be written in a JSON blob in index.js. but

1.I am working on React.js. I worte simple code in App.js and All data presented must be written in a JSON blob in index.js. but when I changed the code from index.js, it wont change on App.js. It must be some wrong on Index.js and I couldn't figure out.

This is my code

App.js

import React, { Component } from 'react';

class App extends Component { render() { return (

);

} }

class Description extends Component{ render(){ return (

John Legend

); }

}

class DescriptionFour extends Component{ render(){ return (

  • Learning New Things
  • Watching Soccer
  • ); }

    }

    export default App;

    --------------------------------------------------------------------------

    This is Index.js

    index.js

    import React from 'react';

    import ReactDOM from 'react-dom';

    import './index.css';

    import App from './App';

    import registerServiceWorker from './registerServiceWorker';

    var data = {

    Descript: 'Kany West',

    DescriptionFour: ["Playing Football",

    "Reading books"]

    }

    ReactDOM.render(, document.getElementById('root'));

    registerServiceWorker();

    Step by Step Solution

    There are 3 Steps involved in it

    Step: 1

    blur-text-image

    Get Instant Access to Expert-Tailored Solutions

    See step-by-step solutions with expert insights and AI powered tools for academic success

    Step: 2

    blur-text-image

    Step: 3

    blur-text-image

    Ace Your Homework with AI

    Get the answers you need in no time with our AI-driven, step-by-step assistance

    Get Started

    Recommended Textbook for

    Spatial Databases A Tour

    Authors: Shashi Shekhar, Sanjay Chawla

    1st Edition

    0130174807, 978-0130174802

    More Books

    Students also viewed these Databases questions