mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* fixes signup flow * Apply suggestions from code review Co-authored-by: Hugo Häggmark <hugo.haggmark@gmail.com> * Update ForgottenPassword.tsx * fixes build failure * fixes build failure Co-authored-by: Hugo Häggmark <hugo.haggmark@gmail.com>
16 lines
309 B
TypeScript
16 lines
309 B
TypeScript
import React, { FC } from 'react';
|
|
import { LoginLayout, InnerBox } from '../Login/LoginLayout';
|
|
import { Signup } from './Signup';
|
|
|
|
export const SignupPage: FC = () => {
|
|
return (
|
|
<LoginLayout>
|
|
<InnerBox>
|
|
<Signup />
|
|
</InnerBox>
|
|
</LoginLayout>
|
|
);
|
|
};
|
|
|
|
export default SignupPage;
|