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>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === 'tasks' && (
|
{activeView === 'tasks' && (<>
|
||||||
<aside className="sidebar">
|
<aside className="sidebar">
|
||||||
<button
|
<button
|
||||||
className="btn btn-primary btn-create"
|
className="btn btn-primary btn-create"
|
||||||
|
|
@ -461,7 +461,7 @@ const App = () => {
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</section>
|
</section>
|
||||||
)} {/* end activeView === 'tasks' */}
|
</>)} {/* end activeView === 'tasks' */}
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Reference in a new issue