Skip to content
Snippets Groups Projects
Commit 0634d228 authored by Moritz Stueckler's avatar Moritz Stueckler
Browse files

fix: ternary

parent e3648833
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ const SidebarContainer: React.FC<Props> = ({ style, className, children }) => { ...@@ -9,7 +9,7 @@ const SidebarContainer: React.FC<Props> = ({ style, className, children }) => {
return ( return (
<div <div
style={style} style={style}
className={`flex flex-col shadow-2xl border-r-2 border-black border-opacity-20 ${className ? className : ''}`} className={`flex flex-col shadow-2xl border-r-2 border-black border-opacity-20 ${className ?? ''}`}
> >
{children} {children}
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment