Skip to content

Commit

Permalink
🚨 Fixed linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ZickZenni committed Aug 29, 2024
1 parent 23f76c7 commit 6a543a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
4 changes: 1 addition & 3 deletions src/renderer/components/UserPanel/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import './UserPanel.css';

export default function UserPanel() {
return <div className="userpanel__container">

</div>
return <div className="userpanel__container" />;
}
12 changes: 5 additions & 7 deletions src/renderer/pages/Home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import './Home.css';

export default function HomePage() {
return <div className="home__container">
<div className="home__sidebar">

</div>
<div className="home__content">

return (
<div className="home__container">
<div className="home__sidebar" />
<div className="home__content" />
</div>
</div>;
);
}

0 comments on commit 6a543a9

Please sign in to comment.