cloudflare/vinext

Public

mirrored from https://github.com/cloudflare/vinextAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.0.9

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

examples/hackernews/components/comment-form.jsx

8lines · modecode

1import styles from './comment-form.module.css';
2
3export default () => (
4 <div>
5 <textarea className={styles.textarea} />
6 <button className={styles.button}>add comment</button>
7 </div>
8);