mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
10 lines
No EOL
266 B
JavaScript
10 lines
No EOL
266 B
JavaScript
import React from 'react';
|
|
import { Components } from 'meteor/vulcan:core';
|
|
import moment from 'moment';
|
|
|
|
const AdminUsersCreated = ({ document: user }) =>
|
|
<div>
|
|
{moment(new Date(user.createdAt)).format('MM/DD/YY')}
|
|
</div>;
|
|
|
|
export default AdminUsersCreated; |