Skip to content

Commit

Permalink
update App to remove some implementation details
Browse files Browse the repository at this point in the history
  • Loading branch information
beccaelenzil committed May 13, 2022
1 parent fe191f4 commit 6ca57d3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import React from "react";
import "./App.css";
import ChatEntry from "./components/ChatEntry";
import chatMessages from "./data/messages.json";

const App = () => {
console.log(chatMessages);

return (
<div id="App">
<header>
Expand All @@ -14,7 +11,6 @@ const App = () => {
<main>
{/* Wave 01: Render one ChatEntry component
Wave 02: Render ChatLog component */}
<ChatEntry></ChatEntry>
</main>
</div>
);
Expand Down

0 comments on commit 6ca57d3

Please sign in to comment.