Cleaned Imports on ContactPage
This commit is contained in:
@ -24,11 +24,14 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import Page, { PageBoundary } from './../Page';
|
import Page, { PageBoundary } from './../Page';
|
||||||
import Section, { BodySection } from './../../section/Section';
|
|
||||||
import Input, { Form, InputGroup, TextArea, Label, ButtonGroup } from './../../input/input';
|
import Input, { Form, InputGroup, TextArea, Label, ButtonGroup } from './../../input/input';
|
||||||
import Language from './../../language/Language';
|
import Language from './../../language/Language';
|
||||||
import SplitSection, { Split } from './../../section/split/SplitSection';
|
import Section, {
|
||||||
import ClearSection from './../../section/layout/ClearSection';
|
BodySection,
|
||||||
|
ClearSection,
|
||||||
|
SplitSection,
|
||||||
|
Split
|
||||||
|
} from './../../section/Section';
|
||||||
|
|
||||||
class ContactPage extends React.Component {
|
class ContactPage extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@ -40,8 +43,8 @@ class ContactPage extends React.Component {
|
|||||||
<Page style="contact-page" className="p-contact-page">
|
<Page style="contact-page" className="p-contact-page">
|
||||||
|
|
||||||
<ClearSection />
|
<ClearSection />
|
||||||
<PageBoundary small>
|
|
||||||
|
|
||||||
|
<PageBoundary small>
|
||||||
<SplitSection>
|
<SplitSection>
|
||||||
<Split>
|
<Split>
|
||||||
<BodySection>
|
<BodySection>
|
||||||
@ -81,6 +84,8 @@ class ContactPage extends React.Component {
|
|||||||
|
|
||||||
</SplitSection>
|
</SplitSection>
|
||||||
</PageBoundary>
|
</PageBoundary>
|
||||||
|
|
||||||
|
<ClearSection />
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user