This commit is contained in:
+13
-13
@@ -125,20 +125,20 @@ export default function Menu(props) {
|
|||||||
|
|
||||||
{/* 2 boutons Editor / Memory */}
|
{/* 2 boutons Editor / Memory */}
|
||||||
<div className="my-1 w-full">
|
<div className="my-1 w-full">
|
||||||
<div className="text-xs font-semibold text-gray-500 uppercase mb-1">MENUS</div>
|
<label htmlFor="midi-in-select" className="text-xs font-bold text-gray-500 uppercase">MENU/label>
|
||||||
<div className="flex gap-1 w-full">
|
<div className="flex gap-1 w-full">
|
||||||
<button
|
<button
|
||||||
className={props.page === 'editor' ? 'btn btn-active w-1/2' : 'btn w-1/2'}
|
className={props.page === 'editor' ? 'btn btn-active w-1/2' : 'btn w-1/2'}
|
||||||
onClick={() => props.setPage('editor')}
|
onClick={() => props.setPage('editor')}
|
||||||
>Editor
|
>Editor
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
className={props.page === 'memory' ? 'btn btn-active w-1/2' : 'btn w-1/2'}
|
className={props.page === 'memory' ? 'btn btn-active w-1/2' : 'btn w-1/2'}
|
||||||
onClick={() => props.setPage('memory')}
|
onClick={() => props.setPage('memory')}
|
||||||
>Memory
|
>Memory
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* BLOC Patch Name */}
|
{/* BLOC Patch Name */}
|
||||||
|
|||||||
Reference in New Issue
Block a user