aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/basic/apps/web/pages/index.tsx
blob: 6ec0887ce02b4b458193ce7ffb090b89afba7a95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { Button } from "ui";

export default function Web() {
  return (
    <div>
      <h1>Web</h1>
      <Button />
    </div>
  );
}