mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
10 lines
231 B
React
10 lines
231 B
React
import styles from './server-info.module.css';
|
|
|
|
export default function ServerInfo() {
|
|
return (
|
|
<div className={styles['server-info']}>
|
|
Rendered at {new Date().toTimeString()} with Cloudflare Workers.
|
|
</div>
|
|
);
|
|
}
|