Files
Slutprojekt-Webbutveckling-…/src/App.tsx
T
phille06 f913a78b86
Deploy static content to Pages / deploy (push) Has been cancelled
feat: satt upp Vite + React + TypeScript + TailwindCSS
2026-03-25 00:21:55 +01:00

10 lines
268 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
function App() {
return (
<div className="min-h-screen bg-[#F8F9FB] text-[#0F172A] dark:bg-[#0B0F14] dark:text-[#E5E7EB]">
<h1 className="text-4xl font-bold text-center py-20 text-primary">KITS Krilles IT Shop</h1>
</div>
)
}
export default App