import { Component } from "../app-framework";
export class SubscriptionManager extends Component {
render() {
return (
<div>
<h4>Subscription Manager</h4>
Not yet implemented. This will make it easy for admins to make trials
for specific users...
</div>
);
}
}