Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of qmmr

qmmr

qmmr has asked 1 questions and find answers to 1 problems.

Stats

46
EtPoint
16
Vote count
1
questions
1
answers

About

import { List } from 'immutable'

const profile = (config => ({
  name: 'Marcin Kumorek',
  username: 'qmmr',
  email: '[email protected]',
  location: 'Kraków',
  position: 'Front-end Engineer',
  hobbies: [
    'travelling ✈️',
    'cars 🏎️',
    'coding 💻'
  ],
  ...config
})({
  language: 'JavaScript',
  libraries: List.of(
    'React', 'Redux', 'Recompose', 'Immutable', 'GraphQL', 'Lodash', 'Jest', 'RTL', 'Playwright'
  ),
  semicolons: !!0,
})