import React from 'react'; import { config } from 'config'; import './style.css'; import '../../static/fonts/fontawesome/style.css'; class SiteLinks extends React.Component { render() { return (
    {config.siteEmailUrl && (
  • )} {config.siteTelegramUrl && (
  • )}
    {config.siteRssUrl && (
  • )}
); } } export default SiteLinks;