gettingStarted.tsx 473 B

123456789101112131415161718
  1. import * as React from 'react';
  2. import styled from '@emotion/styled';
  3. import {PageContent} from 'app/styles/organization';
  4. import space from 'app/styles/space';
  5. type Props = {
  6. className?: string;
  7. children: React.ReactNode;
  8. };
  9. function GettingStarted({className, children}: Props) {
  10. return <PageContent className={className}>{children}</PageContent>;
  11. }
  12. export default styled(GettingStarted)`
  13. background: ${p => p.theme.background};
  14. padding-top: ${space(3)};
  15. `;