// @flow
import React from 'react';
import { SIMPLE_SITE } from 'config';
type Props = {
type: string,
};
const Pixel = (props: Props) => {
const { type } = props;
if (!SIMPLE_SITE) {
return null;
}
if (type === 'retargeting') {
return (
<>
>
);
} else if (type === 'kill') {
return (
<>
>
);
} else {
return null;
}
};
export default Pixel;