We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0864fa0 commit e67c6f6Copy full SHA for e67c6f6
example/src/App.jsx
@@ -14,10 +14,16 @@
14
* limitations under the License.
15
*/
16
17
+// React core.
18
import React from 'react';
19
+import ReactDOM from 'react-dom';
20
+
21
+// Firebase.
22
import firebase from 'firebase/app';
23
import 'firebase/auth';
24
import { FirebaseAuth } from 'react-firebaseui';
25
26
+// Styles
27
import styles from './app.css'; // This uses CSS modules.
28
import './firebaseui-styling.global.css'; // Import globally.
29
@@ -72,3 +78,6 @@ export default class App extends React.Component {
72
78
)
73
79
}
74
80
81
82
+// Load the app in the browser.
83
+ReactDOM.render(<App/>, document.getElementById('app'));
0 commit comments