Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 599 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 599 Bytes

import { SoftwareDeveloper } from '@thompsonemerson';

class Bio extends SoftwareDeveloper {
  name     = 'Emerson Thompson';
  title    = 'Front-End Engineer';
  company  = 'Sky.One Solutions | Remote';
  location = 'Fortaleza, CE';
  website  = 'https://thomp.dev';
}

class Skills extends SoftwareDeveloper {
  languages  = ['JavaScript', 'PHP'];
  databases  = ['MySQL', 'MongoDB', 'PostgreSQL'];
  frameworks = ['React', 'React Native', 'Angular', 'GraphQL'];
}