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