Skip to content

Commit

Permalink
apdated scripts and
Browse files Browse the repository at this point in the history
  • Loading branch information
OlhaDanylevska committed Jan 29, 2024
1 parent 19906be commit 8842672
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
Binary file added client/build/favicon.ico
Binary file not shown.
8 changes: 8 additions & 0 deletions client/build/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"short_name": "To Do App",
"name": "To Do App",
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions client/build/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
9 changes: 4 additions & 5 deletions client/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import "./index.css";
import App from "./App";

ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
);
<App />,
document.getElementById('root'));


0 comments on commit 8842672

Please sign in to comment.