13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
function Heading() {
|
|
|
|
return (
|
|
<section className="container">
|
|
<div className="text-center text-slate-700 text-4xl">
|
|
Screenshot to code
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default Heading;
|