import React from 'react';
const crateContainer = (id: string) => {
  const reactElement = React.createElement('div', {
    style: { width: '100%', height: '100%' },
    id: id,
  });

  return reactElement;
};

export { crateContainer };
