Skip to content

Commit 73cba00

Browse files
authored
Merge pull request #4 from wwcodemanila/convert-files
products(update): convert file type from jsx to js
2 parents 704ffa7 + e387faf commit 73cba00

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

sample-app/src/App.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import About from "./About/components/About";
1818
import ProfileCard from "./Profile/components/ProfileCard";
1919
import ProfileForm from "./Profile/components/ProfileForm";
2020
import Weather from "./Weather/components/Weather";
21-
import Products from "./Products/components/Products.jsx";
21+
import Products from "./Products/components/Products";
2222

2323
class App extends Component {
2424
render() {

sample-app/src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ const store = createStore(
2525
}
2626
],
2727
user: "guest"
28-
},
29-
window.devToolsExtension()
28+
}
29+
// window.devToolsExtension()
3030
);
3131

3232
ReactDOM.render(

0 commit comments

Comments
 (0)