import React from 'react';
interface Props {
children: any;
}
export const Aux: React.SFC<Props> = ({ children }) => children;