summaryrefslogtreecommitdiff
path: root/src/components/shared/Styled.tsx
blob: 86d87cac4d26d768bee8ed0152cc5b8ecc3af820 (plain)
1
2
3
4
5
6
7
import * as React from 'react';

import s from './Styled.module.scss';

export function FlexCenter({ children }: { children: React.ReactNode }) {
  return <div className={s.FlexCenter}>{children}</div>;
}