Pārlūkot izejas kodu

feat(index.js): where is app.js called

Helder 6 gadi atpakaļ
vecāks
revīzija
66cf3247cb
1 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  1. 5 0
      src/index.jsx

+ 5 - 0
src/index.jsx

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