PR-753737: Empezando a agregar configuración de webpack al proyecto.

This commit is contained in:
2022-04-11 15:25:51 +00:00
parent 3dfc7b1739
commit 93371d933f
9 changed files with 10692 additions and 0 deletions

5
src/components/App.jsx Normal file

@ -0,0 +1,5 @@
import React from 'react';
const App = () => <h1>Hello React!</h1>
export default App;

5
src/index.js Normal file

@ -0,0 +1,5 @@
import React from 'react';
import ReactDom from 'react-dom';
import App from './components/App';
ReactDom.render(<App />, document.getElementById('app'));