Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Anees Quateja (Phoenix) #27

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
beginning
aneesquateja committed Dec 11, 2024
commit fc5676b6b23d52004a833bb265d12539fcba66b3
3 changes: 3 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import './App.css';
import ChatLog from './components/ChatLog';
import ChatEntry from './components/ChatEntry';

const App = () => {
return (
@@ -7,6 +9,7 @@ const App = () => {
<h1>Application title</h1>
</header>
<main>
<ChatEntry/>
{/* Wave 01: Render one ChatEntry component
Wave 02: Render ChatLog component */}
</main>
3 changes: 3 additions & 0 deletions src/components/ChatEntry.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import './ChatEntry.css';
// import TimeStamp from './TimeStamp';
// import

const ChatEntry = () => {
return (
@@ -15,6 +17,7 @@ const ChatEntry = () => {

ChatEntry.propTypes = {
// Fill with correct proptypes
// id: Prop
};

export default ChatEntry;
10 changes: 10 additions & 0 deletions src/components/ChatLog.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { pass } from 'jest-extended';
import './ChatLog.css';

const ChatLog = () => {


};


export default ChatLog;