mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
20 lines
524 B
TypeScript
20 lines
524 B
TypeScript
import * as React from 'react';
|
|
import { WhyNoRoles } from '../../organisms/help-why-no-roles';
|
|
import { HelpPageTemplate } from './HelpPage';
|
|
|
|
export default {
|
|
title: 'Templates/Help Page',
|
|
};
|
|
|
|
export const Base = () => (
|
|
<HelpPageTemplate user={null}>
|
|
<h1>What is the world but vibrations?</h1>
|
|
<p>Vibrations that synchronize and tie it together, running free forever.</p>
|
|
</HelpPageTemplate>
|
|
);
|
|
|
|
export const WhyNoRoles_ = () => (
|
|
<HelpPageTemplate>
|
|
<WhyNoRoles></WhyNoRoles>
|
|
</HelpPageTemplate>
|
|
);
|