blob: ed283946a9fcc1d71c9b5a5c0cefdc417d08667e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import * as React from "react";
import "./App.css";
import { CounterButton, NewTabLink } from "ui";
function App() {
return (
<div className="container">
<h1 className="title">
Admin <br />
<span>Kitchen Sink</span>
</h1>
<CounterButton />
<p className="description">
Built With{" "}
<NewTabLink href="https://turbo.build/repo">Turborepo</NewTabLink> +{" "}
<NewTabLink href="https://vitejs.dev/">Vite</NewTabLink>
</p>
</div>
);
}
export default App;
|