Skip to content

Instantly share code, notes, and snippets.

@kutyel
Last active June 21, 2016 06:15
Show Gist options
  • Save kutyel/367af1b4bae1c1e91281 to your computer and use it in GitHub Desktop.
Save kutyel/367af1b4bae1c1e91281 to your computer and use it in GitHub Desktop.
import { Painter } from './painter';
export var PAINTERS: Painter[] = [
{
id: 1,
name: 'Michelangelo',
style: 'Renaissance',
examples: ['David', 'Sistine Chapel', 'The Last Judgement']
},
{
id: 2,
name: 'Raphael',
style: 'Renaissance',
examples: ['School at Athens', 'Lucretia', 'Saint George and the Dragon']
},
{
id: 3,
name: 'Vincent van Gogh',
style: 'Post-Impressionist',
examples: ['Self-portrait', 'The Starry Night', 'The Yellow House']
},
{
id: 4,
name: 'Claude Monet',
style: 'Impressionist',
examples: ['Morning on the Seine', 'The Woman in the Green Dress', 'Sunrise']
},
{
id: 5,
name: 'Johannes Vermeer',
style: 'Baroque',
examples: ['The Milkmaid', 'Girl with a Pearl Earring', 'The Music Lesson']
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment