summaryrefslogtreecommitdiff
path: root/examples/subpath/src/components/Time.jsx
blob: 8b5837c859e3f8650204190d5cd69feea7a38629 (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>;
}