import * as React from 'react';

import { ExpoEscPosUtilsViewProps } from './ExpoEscPosUtils.types';

export default function ExpoEscPosUtilsView(props: ExpoEscPosUtilsViewProps) {
  return (
    <div>
      <iframe
        style={{ flex: 1 }}
        src={props.url}
        onLoad={() => props.onLoad({ nativeEvent: { url: props.url } })}
      />
    </div>
  );
}
