13 lines
495 B
TypeScript
13 lines
495 B
TypeScript
import React from 'react';
|
|
|
|
export function Menu() {
|
|
return (
|
|
<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>
|
|
);
|
|
}
|