deleted some useless stuff and backend integration

This commit is contained in:
2020-05-25 21:43:19 +03:00
parent e1abcdb379
commit 86f632d72b
21 changed files with 128 additions and 109 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
const Button = ({ text, onClick }) => (
<button className="button light" type="button" onClick={onClick}>
{text}
</button>
);
export default Button;