load("@npm//@bazel/typescript:index.bzl", "ts_library")

package(default_visibility = ["//visibility:public"])

exports_files(["usage.css"])

ts_library(
    name = "usage",
    srcs = glob(["*.tsx"]),
    deps = [
        "//app/auth",
        "//app/components/select",
        "//app/errors",
        "//app/format",
        "//app/service",
        "//proto:usage_ts_proto",
        "@npm//@types/react",
        "@npm//react",
    ],
)
