Initial commit
This commit is contained in:
6
src/App.scss
Normal file
6
src/App.scss
Normal file
@@ -0,0 +1,6 @@
|
||||
@use "tailwindcss" as *;
|
||||
@use "@fontsource/roboto" as *;
|
||||
|
||||
body {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
11
src/App.tsx
Normal file
11
src/App.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import "./App.scss";
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<main className="container">
|
||||
<p>Berry Dash Manager</p>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
9
src/main.tsx
Normal file
9
src/main.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import App from "./App";
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>,
|
||||
);
|
||||
1
src/vite-env.d.ts
vendored
Normal file
1
src/vite-env.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/// <reference types="vite/client" />
|
||||
Reference in New Issue
Block a user