summaryrefslogtreecommitdiff
path: root/examples/subpath/src/components/Time.jsx
blob: 8172b77dd9359eba42db4f90c0ce5ed1487af589 (plain) (blame)
1
2
3
4
5
6
7
import React from 'react';

export default function() {
  const date = new Date();
  const format = new Intl.DateTimeFormat('en-US');
  return <time>{format.format(date)}</time>
}