isProduction
Overview
Usage
Importing the Utility
import { isProduction } from "@yankes/fivem-react/utils";Example
In Game
import { useState } from "react";
import { isProduction } from "@yankes/fivem-react/utils";
export const MyComponent = () => {
const [playerName, setPlayerName] = useState<string | null>("john.doe");
return (
<div>
{isProduction() && playerName ? `Hi, ${playerName}!` : "You can see this content only in in game!"} // Hi, john.doe!
</div>
)
}In Browser
Last updated