9 lines
133 B
TypeScript
9 lines
133 B
TypeScript
const NOR = () => {
|
|
return (
|
|
<section className="min-h-screen" id="nor">
|
|
NOR
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default NOR;
|