This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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'; |