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