Question
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 (
}
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(
registerServiceWorker();
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started