Skip to content

Commit

Permalink
refactor styles
Browse files Browse the repository at this point in the history
  • Loading branch information
tomheaton committed Jun 17, 2024
1 parent 10b9dea commit e4191be
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,20 @@
# production
/dist

# misc
.DS_Store
# ENV
.env.local
.env.development.local
.env.test.local
.env.production.local

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# IDE
.idea
.vscode

# macOS
.DS_Store
1 change: 0 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { BrowserRouter as Router, Route, Routes } from "react-router-dom";
import Home from "./pages";
import "./styles/App.css";

export default function App() {
return (
Expand Down
1 change: 1 addition & 0 deletions src/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import ReactDOM from "react-dom";
import App from "./App";
import "./styles/globals.css";

ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
Expand Down
File renamed without changes.

0 comments on commit e4191be

Please sign in to comment.