Changing Text
All text strings used in the project are stored in the src/constants.ts file for easy access and updates. This centralizes the management of text, making it simpler to modify content without diving in
Steps to Change Text
Open the
src/constants.ts
file.Find the text you want to modify. For example, the file might look like this:
```typescript
export const appName = "SMART IPTV PRO";
export const kLogOut = "LogOut";
export const kMovies = "MOVIES";
export const kSeries = "SERIES";
export const kLive = "LIVE";
export const kCategories = "Categories";
export const kChannels = "Channels";
```
The changes will automatically reflect wherever these constants are used in the components. For instance
Last updated