Skip to content

Instantly share code, notes, and snippets.

View derviselimovic's full-sized avatar
💻
Workin'

derviselimovic

💻
Workin'
View GitHub Profile
@derviselimovic
derviselimovic / resume.json
Last active June 22, 2021 18:43
resume.json for JSONResume
{
"basics": {
"name": "Dervis Selimovic",
"label": "Frontend Developer",
"picture": "",
"email": "derviselimovic@gmail.com",
"phone": "+436606069759",
"summary": "Frontend developer slowly turning into a Fullstack one. Code readability, DRY principle, 12factor, constant performance optimization and TDD - are my constant focus on every project I take on. Experienced in agile methodology with excellent communication.",
"location": {
"countryCode": "Austria",
@derviselimovic
derviselimovic / basic_router.jsx
Created July 25, 2018 16:29 — forked from siakaramalegos/basic_router.jsx
Basic example of React Router: BrowserRouter, Link, Route, and Switch
// BrowserRouter is the router implementation for HTML5 browsers (vs Native).
// Link is your replacement for anchor tags.
// Route is the conditionally shown component based on matching a path to a URL.
// Switch returns only the first matching route rather than all matching routes.
import {
BrowserRouter as Router,
Link,
Route,
Switch,
} from 'react-router-dom';