typescript.tsx
1
2
3
4
5
6
7
8
9
10
11
12
import React from "react"; export function Welcome() { return ( <div className="p-8 bg-black text-white rounded-xl"> <h1 className="text-2xl font-bold">Hello from Naru!</h1> <p className="mt-2 text-zinc-400"> A premium macOS-style code editor. </p> </div> ); }
0%