-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Banks
committed
Apr 8, 2020
1 parent
5af8466
commit 0a206db
Showing
2 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import React from 'react'; | ||
import { connect } from 'react-redux'; | ||
import actionCreators from '../action-creators'; | ||
import { FullStateTree } from '../interfaces'; | ||
import { Typography, Divider, Row, Col } from 'antd'; | ||
const { Title, Paragraph, Text } = Typography; | ||
|
||
function mapStateToProps(state: FullStateTree) { | ||
return { | ||
}; | ||
} | ||
|
||
const mapDispatchToProps = { | ||
}; | ||
|
||
|
||
interface AppProps { | ||
} | ||
|
||
class ButterworthAboutView extends React.Component<AppProps> { | ||
render() { | ||
return ( | ||
<div> | ||
<Title level={2}>About Alex Butterworth</Title> | ||
|
||
<Row> | ||
<Col span={10}> | ||
<Paragraph>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam in ante | ||
ante. Aliquam ultrices mi consequat eros pulvinar, porta ornare odio | ||
consequat. Quisque lectus felis, ultricies nec nibh in, blandit ullamcorper | ||
enim. Nam vel neque non enim rutrum varius. Suspendisse tempor massa elit, ut | ||
tincidunt neque euismod sit amet. Sed fringilla auctor venenatis. Vestibulum eu | ||
consectetur quam. Aenean lorem purus, hendrerit ac odio vel, posuere placerat | ||
enim.</Paragraph> | ||
</Col> | ||
</Row> | ||
|
||
</div> | ||
); | ||
} | ||
} | ||
|
||
|
||
export default connect(mapStateToProps, mapDispatchToProps)(ButterworthAboutView); | ||
|