11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
import React from "react";
|
|
|
|
const Announcement = () => {
|
|
return (
|
|
<div className="max-md:block hidden py-1 text-base font-inter text-center bg-green-100 font-semibold">
|
|
Want to edit? Use your computer to edit.
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Announcement;
|