💡 A little guideline to our projects frontend, is open to contribute with all Distriters!

- httpa://findfh.dev
- @fh_andn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type IMovieLatest = { | |
adult: boolean | |
backdrop_path: null | |
belongs_to_collection: null | |
budget: number | |
genres: IGenre[] | |
homepage: string | |
id: number | |
imdb_id: string | |
original_language: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type IMovie = { | |
adult: boolean | |
backdrop_path: string | null | |
belongs_to_collection: Record<string, unknown> | null | |
budget: number | |
genres: [ | |
{ | |
id: number | |
name: string | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const data = { | |
artists: [ | |
{ | |
id: 1, | |
name: "Normandie" | |
} | |
], | |
albuns: [ | |
{ | |
id: 1, |