import React from 'react';
import { SBox } from '../../common/s-components/layout/s-box';
import { Wave1Top } from './wave1-top';
import { TVendor } from '../../common/types';

export type TProps = {
  vendor?: TVendor;
};

export const Wave1: React.FC<TProps> = props => {
  const { vendor } = props;
  return (
    <SBox height={519}>
      <SBox position="absolute">
        <Wave1Top vendor={vendor} />
      </SBox>
    </SBox>
  );
};
