Skip to content

Instantly share code, notes, and snippets.

View gladtoseeuhappy's full-sized avatar
🎯
Focusing

may gladtoseeuhappy

🎯
Focusing
View GitHub Profile
import React from 'react';
import './Modal.css';
import Button from '../Button/Button';
const modal = props => (
<div className={`modal ${props.open ? 'open' : ''}`}>
<header className="modal__header">
<h1>{props.title}</h1>
</header>