Skip to content

Commit 9ba1ffe

Browse files
committed
feat: added screenshots
1 parent ab48b01 commit 9ba1ffe

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ The React app is configured to run by default on port 3000.
3434
- Can have hyperlinks and images.
3535
- Can parse HTML output from the editor to send to the back-end server.
3636

37+
## Project Screenshots
38+
39+
Just one screenshot is there. No routes exist, editor is implemented on the main page only which looks something like this.
40+
41+
![alt text](./screenshots/1.PNG)
42+
3743
## Deployment
3844

3945
Docker deployment using Nginx to be added in the future.

screenshots/1.PNG

25.8 KB
Loading

src/App.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@ function App() {
3737
onChange={ value => getHTMLData(value) }
3838
/>
3939
</ThemeProvider>
40-
40+
<Button variant="contained" onClick={() => getData()}>Get Data</Button>
4141
<div>
4242
{ReactHtmlParser(initialData)}
4343
</div>
44-
<Button variant="contained" onClick={() => getData()}>Hello World</Button>
4544
</div>
4645
);
4746
}

0 commit comments

Comments
 (0)