Fix JSX syntax in frontend/src/App.jsx
This commit is contained in:
parent
db17a9ff61
commit
c0ccf050c7
1 changed files with 2 additions and 2 deletions
|
|
@ -246,7 +246,7 @@ const App = () => {
|
|||
</div>
|
||||
)}
|
||||
|
||||
{activeView === 'tasks' && (
|
||||
{activeView === 'tasks' && (<>
|
||||
<aside className="sidebar">
|
||||
<button
|
||||
className="btn btn-primary btn-create"
|
||||
|
|
@ -461,7 +461,7 @@ const App = () => {
|
|||
</div>
|
||||
)}
|
||||
</section>
|
||||
)} {/* end activeView === 'tasks' */}
|
||||
</>)} {/* end activeView === 'tasks' */}
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Reference in a new issue