diff --git a/src/components/comments.js b/src/components/comments.js new file mode 100644 index 0000000..909e573 --- /dev/null +++ b/src/components/comments.js @@ -0,0 +1,169 @@ +import React, { useState } from 'react' + +import ReactButton from './reactButton.js' + +import styles from './comments.module.css' + +function CommentInput({ onSubmit }) { + const [val, setVal] = useState('') + return ( +
+