mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 17:49:09 +00:00
24 lines
592 B
Text
24 lines
592 B
Text
load("//hack/bazel/js:react.bzl", "react_library")
|
|
load("//hack/bazel/js:jest.bzl", "jest_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
react_library(
|
|
name = "server-masthead",
|
|
deps = [
|
|
"next",
|
|
"react-icons",
|
|
"//src/design-system/atoms/avatar",
|
|
"//src/design-system/atoms/colors",
|
|
"//src/design-system/atoms/timings",
|
|
"//src/design-system/atoms/typography",
|
|
"//src/design-system/shared-types",
|
|
],
|
|
)
|
|
|
|
jest_test(
|
|
src = ":server-masthead",
|
|
deps = [
|
|
"//src/design-system/shared-types",
|
|
],
|
|
)
|