Skip to content

Instantly share code, notes, and snippets.

View HenryKun55's full-sized avatar
:octocat:
Aways doing some t h i n g s

Flávio Henrique do Nascimento Andrade HenryKun55

:octocat:
Aways doing some t h i n g s
  • Belo Jardim, PE
  • X @fh_andn
View GitHub Profile
@HenryKun55
HenryKun55 / guideline-distrito.mdx
Last active May 13, 2022 14:09
Guideline Dristrito (Front-end)

Heeey, Distriters!

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

📖 Summary

Git


@HenryKun55
HenryKun55 / MovieLatest.ts
Created August 31, 2021 16:20
Movie Typed ( TMDB ) 2021-08-31
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
@HenryKun55
HenryKun55 / Movie.ts
Created August 31, 2021 16:07
Movie Typed ( TMDB ) 2021-08-31
export type IMovie = {
adult: boolean
backdrop_path: string | null
belongs_to_collection: Record<string, unknown> | null
budget: number
genres: [
{
id: number
name: string
}
@HenryKun55
HenryKun55 / data.js
Created December 10, 2019 20:47
data for graphql example
const data = {
artists: [
{
id: 1,
name: "Normandie"
}
],
albuns: [
{
id: 1,