millions-author-34878
import { getServicosHome } from "../api/areas"; import { useFeatureIsOn, useFeatureValue } from "@growthbook/growthbook-react"; import { useExperiment } from "@growthbook/growthbook-react"; /.../ const newButtonColor = useFeatureIsOn("buttonColor"); // const buttonColor = useFeatureValue("buttonColor", "blue"); const { value } = useExperiment({ key: "buttoncolor", variations: ["blue", "red"], }); /.../ {newButtonColor ? ( <p style={{ background: "red" }}>VERMELHO</p> ) : ( <p style={{ background: "blue" }}>AZUL</p> )}
Open source platform for stress free deployments, measured impact, and smarter decisions.