cloudflare/vinext

Public

mirrored fromhttps://github.com/cloudflare/vinextAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
23f9e1e13decb3ee024adc6a091b9252427f8e2e

Branches

Tags

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

Clone

HTTPS

Download ZIP

examples/hackernews/components/footer.jsx

12lines · modecode

1import styles from './footer.module.css';
2
3export default function Footer() {
4 return (
5 <div>
6 <footer className={styles.footer}>
7 Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC |
8 Contact
9 </footer>
10 </div>
11 );
12}
13