Learn Simpli

Free Online Tutorial For Programmers, Contains a Solution For Question in Programming. Quizzes and Practice / Company / Test interview Questions.

How to add a component in React JS

How to add a component in React JS

In this tutorial, you will learn how to add a component to React JS app. Now we will create an employee component and import the same. For implementing the same follow the below steps.

Step 1:
Create a directory in src/Employee/Employee.js and paste the below code snippet

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import React from 'react';
const employee = () => {
return <p>Hi I am an employee</p>
}
export default employee;
import React from 'react'; const employee = () => { return <p>Hi I am an employee</p> } export default employee;
import React from 'react';

const employee = () => {
    return <p>Hi I am an employee</p>
}

export default employee;

Step 2:
Paste the below code in src/App.js file

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import React, {Component} from 'react';
import './App.css';
import Employee from './Employee/Employee'
class App extends Component {
render() {
return (
<div className="App">
<h1>Welcome to react JS tutorial</h1>
<Employee />
</div>
);
}
}
export default App;
import React, {Component} from 'react'; import './App.css'; import Employee from './Employee/Employee' class App extends Component { render() { return ( <div className="App"> <h1>Welcome to react JS tutorial</h1> <Employee /> </div> ); } } export default App;
import React, {Component} from 'react';
import './App.css';
import Employee from './Employee/Employee'
class App extends Component {
  render() {
    return (
      <div className="App">
        <h1>Welcome to react JS tutorial</h1>
        <Employee />
      </div>
    );
  }
}

export default App;

Now look at the URL: http://localhost:3000/
You should be able to see the output

Create a component in React JS

One thought on “How to add a component in React JS

Comments are closed.