Skip to content

Commit

Permalink
Eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mumanity committed Oct 21, 2022
1 parent 8414be8 commit 655741a
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ const HierarchyPanelLayout: FC<LayoutProps> = ({ children }) => {
};

export const Main: FC<MainProps> = ({ todo, children }) => {
return <div id='tm-main' className={'tm-main'}>{children}</div>;
return (
<div id='tm-main' className={'tm-main'}>
{children}
</div>
);
};

export const Toolbar: FC<ToolbarProps> = ({ todo, children }) => {
Expand Down

0 comments on commit 655741a

Please sign in to comment.