mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
No EOL
350 B
JavaScript
11 lines
No EOL
350 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React from 'react';
|
|
import Users from 'meteor/nova:users';
|
|
|
|
const UsersSingle = (props, context) => {
|
|
return <Telescope.components.UsersProfile userId={props.params._id} slug={props.params.slug} />
|
|
};
|
|
|
|
UsersSingle.displayName = "UsersSingle";
|
|
|
|
Telescope.registerComponent('UsersSingle', UsersSingle); |