Skip to content

Commit

Permalink
🏗️ Create basic folder structure for components and config
Browse files Browse the repository at this point in the history
  • Loading branch information
hidragos committed Mar 22, 2023
1 parent 79be166 commit e2e2f23
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 13 deletions.
17 changes: 4 additions & 13 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@
import logo from './logo.svg';
import './App.css';
import ChatBubble from './components/ChatBubble';
import ChatInput from './components/ChatInput';

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
<ChatBubble></ChatBubble>
<ChatInput></ChatInput>
</header>
</div>
);
Expand Down
9 changes: 9 additions & 0 deletions src/components/ChatBubble.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react';

const ChatBubble = () => {
return (
<span> chat bubbles zone </span>
);
};

export default ChatBubble;
9 changes: 9 additions & 0 deletions src/components/ChatInput.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react';

const ChatInput = () => {
return (
<span> chat input zone </span>
);
};

export default ChatInput;

0 comments on commit e2e2f23

Please sign in to comment.