13 lines
191 B
TypeScript
13 lines
191 B
TypeScript
|
|
import { Callout } from 'nextra/components';
|
|
import TimeOutput from 'components/snippets-general/time-now.mdx';
|
|
|
|
export const TimeNow = () => {
|
|
|
|
return (
|
|
<div>
|
|
<TimeOutput />
|
|
</div>
|
|
)
|
|
}
|