Explorar el Código

renamed app parameter

Skylsmoi hace 7 años
padre
commit
c54f777d2e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/index.js

+ 1 - 1
src/index.js Ver fichero

@@ -9,7 +9,7 @@ const appInterface = {
9 9
   isRendered: false,
10 10
   renderApp: (domId, data) => {
11 11
     return ReactDOM.render(
12
-      <PageHtml app={data} />
12
+      <PageHtml data={data} />
13 13
       , document.getElementById(domId)
14 14
     )
15 15
   },