2025-03-30 16:42:51 -03:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
export function Menu() {
|
|
|
|
return (
|
2025-03-30 19:28:28 -03:00
|
|
|
<div className="flex justify-around py-2 bg-gray-100">
|
|
|
|
<button className="px-4 py-2 text-sm font-medium">Music</button>
|
|
|
|
<button className="px-4 py-2 text-sm font-medium">File</button>
|
|
|
|
<button className="px-4 py-2 text-sm font-medium">Edit</button>
|
|
|
|
<button className="px-4 py-2 text-sm font-medium">View</button>
|
|
|
|
<button className="px-4 py-2 text-sm font-medium">Account</button>
|
|
|
|
</div>
|
|
|
|
);
|
2025-03-30 16:42:51 -03:00
|
|
|
}
|