aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-react-native-web/apps/web/pages/index.tsx
blob: ab2ba8d922e9e3b1cd989747c5c43b8c407afc0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Button } from "ui";

import styles from "../styles/index.module.css";

export default function Web() {
  return (
    <div className={styles.container}>
      <h1>Web</h1>
      <Button onClick={() => console.log("Pressed!")} text="Boop" />
    </div>
  );
}