Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
001elijah committed Jun 24, 2023
1 parent 6959144 commit 85bfa87
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/HomePage.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Sidebar } from '../components/Sidebar/Sidebar';
import React from 'react';
import { Header } from 'components/Header/Header';
import { useMediaQuery } from 'react-responsive';
import { Container } from 'components/Container';
import { Outlet } from 'react-router-dom';
import { Sidebar } from '../components/Sidebar/Sidebar';
import { Header } from 'components/Header/Header';
import { Container } from 'components/Container';

export const HomePage = () => {
const isDesktopSize = useMediaQuery({ query: '(min-width: 1280px)' });

return (
<div>
<Container>
Expand Down

0 comments on commit 85bfa87

Please sign in to comment.