From 49fca88d58acc8b0ca475b9a03b95014e7f4ff92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Uma=C3=B1a?= Date: Mon, 30 May 2016 13:53:15 -0600 Subject: [PATCH] fix: filename references --- src/index.js | 2 +- src/myApp.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index b0fe459..2c44f4d 100644 --- a/src/index.js +++ b/src/index.js @@ -2,7 +2,7 @@ import ReactDOM from 'react-dom'; import React from 'react'; -import MyApp from './MyApp.jsx'; +import MyApp from './myApp.jsx'; // is there a better way of doing this? import 'ag-grid-root/dist/styles/ag-grid.css'; import 'ag-grid-root/dist/styles/theme-fresh.css'; diff --git a/src/myApp.jsx b/src/myApp.jsx index f42bbaf..9722df2 100644 --- a/src/myApp.jsx +++ b/src/myApp.jsx @@ -4,7 +4,7 @@ import {AgGridReact} from 'ag-grid-react'; import RefData from './RefData'; import RowDataFactory from './RowDataFactory'; import ColDefFactory from './ColDefFactory.jsx'; -import './MyApp.css'; +import './myApp.css'; // take this line out if you do not want to use ag-Grid-Enterprise import 'ag-grid-enterprise';