From a320be734ee5bcea3d36d3be41c7be28bb91ddd4 Mon Sep 17 00:00:00 2001 From: Joel Thiessen Date: Thu, 25 Mar 2021 13:11:36 -0700 Subject: [PATCH] Fix typo with import from app instead of App --- src/index.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/index.js b/src/index.js index fb7b8a50ed8..0ee3f08e892 100644 --- a/src/index.js +++ b/src/index.js @@ -6,11 +6,13 @@ import { render } from '@wordpress/element'; /** * Internal dependencies */ -import { App } from './app'; +import { App } from './App'; import './index.scss'; -const appRoot = document.getElementById( 'woocommerce-admin-test-helper-app-root' ); +const appRoot = document.getElementById( + 'woocommerce-admin-test-helper-app-root' +); -if ( appRoot ) { - render( , appRoot ); -} \ No newline at end of file +if (appRoot) { + render(, appRoot); +}