import React from 'react'; import styled from 'styled-components'; const StyledAbout = styled.div` color: ${props => props.theme.text}; a { border-bottom: 1px solid ${props => props.theme.CRIMSON}; color: ${props => props.theme.CRIMSON}; text-decoration: none; &:hover { border-bottom: 1px solid transparent; } } `; const Header = styled.h3` color: ${props => props.theme.header}; margin-top: 2rem; `; const About = () => (
The Game

Design Patterns - get familiar with the design patterns implemented in JavaScript, test yourself (or someone else) or simply for fun. Enjoy!

References

All the code samples are taken from this{' '} awesome code compilation {' '} by Felipe Beline .

If you want a deep dive into the subject I can't recommend enough{' '} Learning JavaScript Design Patterns {' '} by Addy Osmani .

); export default About;