// @flow import React from 'react'; type Props = { themePath: ?string, }; const Theme = (props: Props) => { const { themePath } = props; if (!themePath) { return null; } return ; }; export default Theme;