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