I have to import multiple files in my App.js
. My folder structure is
/src
/components
layout.js
App.js
index.css
index.js
Here i want to import layout.js
file from App.js
. My code is
import React from 'react';
import Layout from './components/layout';
class App extends React.Component{
render(){
return (
<div>
<p>Hi</p>
</div>
);
}
}
export default App;
In my code, how to import layout.js
file ?