import React from 'react'; import { Link } from 'react-router'; import { FormattedMessage as Message } from 'react-intl'; import { FooterMenu } from 'components/footerMenu'; import styles from './rules.scss'; import messages from './RulesPage.intl.json'; import appInfo from 'components/auth/appInfo/AppInfo.intl.json'; const projectName = ; const rules = [ { title: , items: [ ({projectName}) }} />), (), (), (https://account.ely.by/register) }} />) ] }, { title: , items: [ (), (), (), (), (), (), () ] }, { title: , description: (

{projectName}) }} />

), items: [ (), () ] } ]; export default function RulesPage() { return (
{rules.map((block, sectionIndex) => (

{block.title}

{block.description ? (
{block.description}
) : ''}
    {block.items.map((item, ruleIndex) => (
  1. {item}
  2. ))}
))}
); } RulesPage.displayName = 'RulesPage';