Skip to content

Commit

Permalink
cleanup file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ndoherty-xyz committed Sep 11, 2023
1 parent 6923488 commit 6c3ab57
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BrowserRouter, Routes, Route } from 'react-router-dom'
import Home from './pages/Home/Home';
import Home from './Home';

function App() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home/Home.tsx → src/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import { GitHub, Mail, PenTool, Twitter } from 'react-feather';

import './Home.scss';
import './scss/Home.scss';

const Home = () => {
const [windowHeight, setWindowHeight] = useState<number>(window.innerHeight)
Expand Down
1 change: 0 additions & 1 deletion src/logo.svg

This file was deleted.

2 changes: 1 addition & 1 deletion src/pages/Home/Home.scss → src/scss/Home.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '../../colors.scss';
@import './colors.scss';

.home {

Expand Down
File renamed without changes.

0 comments on commit 6c3ab57

Please sign in to comment.