Skip to content

Commit

Permalink
Comment out an unused component
Browse files Browse the repository at this point in the history
  • Loading branch information
okdonga committed Jan 22, 2022
1 parent 2c65356 commit 3a1bf51
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import React from "react";
import ReactDOM from "react-dom";
import { Dapp } from "./components/Dapp";
// import { Dapp } from "./components/Dapp";
import DietTracker from "./components/Diet";

import "./index.css";
// import "bootstrap/dist/css/bootstrap.css";

// This is the entry point of your application, but it just renders the Dapp
// react component. All of the logic is contained in it.

ReactDOM.render(
<React.StrictMode>
<Dapp />
{/* <Dapp /> */}
<DietTracker />
</React.StrictMode>,
document.getElementById("root")
Expand Down

0 comments on commit 3a1bf51

Please sign in to comment.