8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
import React, { useState } from "react";
|
|
|
|
export function Title() {
|
|
return (
|
|
<h1 className="text-6xl font-bold mt-20">Utility Function Extractor</h1>
|
|
);
|
|
}
|