From e5652f11ecb011d946ab57ed5a39a4221bdb53d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hector=20Queir=C3=B3z?= Date: Wed, 8 Oct 2025 05:15:25 -0300 Subject: [PATCH] updated bazel build example section in README (#1128) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78f37ded..5938d95a 100644 --- a/README.md +++ b/README.md @@ -416,9 +416,9 @@ cc_binary( name = "your_target", srcs = ["your_source.cc"], deps = [ - "@ftxui//:ftxui_component", - "@ftxui//:ftxui_dom", - "@ftxui//:ftxui_screen", + "@ftxui//:component", + "@ftxui//:dom", + "@ftxui//:screen", ], ) ```