8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
import "./App.css";
|
|
|
|
function App() {
|
|
return <div className="bg-black w-8 h-8 text-white ">App</div>;
|
|
}
|
|
|
|
export default App;
|