Skip to content

Instantly share code, notes, and snippets.

@isilveira1
Created June 15, 2022 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isilveira1/04a6acd210d2a0905c992b97abd10572 to your computer and use it in GitHub Desktop.
Save isilveira1/04a6acd210d2a0905c992b97abd10572 to your computer and use it in GitHub Desktop.
export const dogs: Dog[] = [
{
id: 1,
name: 'Fido',
description: 'A friendly dog',
},
{
id: 2,
name: 'Rex',
description: 'A big dog',
},
{
id: 3,
name: 'Spot',
description: 'A small dog',
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment