import React from 'react'; import s from './Loading.module.scss'; type Props = { height?: string; }; const Loading = ({ height }: Props) => { const style = height ? { height } : {}; return (