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 46141d0 commit 5427389Copy full SHA for 5427389
package.json
@@ -31,6 +31,9 @@
31
"webpack-dev-server": "^3.1.14",
32
"workbox-webpack-plugin": "^3.6.3"
33
},
34
+ "prettier": {
35
+ "printWidth": 100
36
+ },
37
"browserslist": "> 0.25%, not dead",
38
"babel": {
39
"presets": [
src/index.js
@@ -3,10 +3,7 @@ import ReactDOM from 'react-dom'
3
4
const title = 'Hello React UI Interactions'
5
6
-ReactDOM.render(
7
- <div className='application'>{title}</div>,
8
- document.getElementById('app')
9
-)
+ReactDOM.render(<div className='application'>{title}</div>, document.getElementById('app'))
10
11
if ('serviceWorker' in navigator) {
12
window.addEventListener('load', () => {
0 commit comments