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