import React from "react"; function App() { return ( <div className="max-w-4xl mx-auto p-5 font-sans"> <h1 className="text-3xl font-bold text-gray-800 border-b-2 border-gray-200 pb-2 mb-4"> Hello React with Tailwind! </h1> <p className="text-lg text-gray-600 leading-relaxed"> Welcome to your React application with Tailwind CSS styling. </p> </div> ); } export default App;
Preview