chore: called npx prettier --write "src/**/*.js"

This commit is contained in:
Begerad, Stefan 2021-09-09 13:49:36 -04:00
parent 69055d4bed
commit b077add01e
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import React from "react";
import ReactDOM from "react-dom";
import React from 'react';
import ReactDOM from 'react-dom';
/*
*component Welcome
*using class syntax from ES6
@ -7,7 +7,7 @@ import ReactDOM from "react-dom";
*/
class Welcome extends React.Component {
render() {
return <h1>react-config-tutorial</h1>;
return <h1>react-config-tutorial</h1>;
}
}
ReactDOM.render(<Welcome />, document.getElementById("root"));
ReactDOM.render(<Welcome />, document.getElementById('root'));