-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
4 changed files
with
50 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/build | ||
/dist | ||
/node_modules | ||
/node_modules |
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,44 @@ | ||
import React, { Component } from 'react'; | ||
import PropTypes from "prop-types"; | ||
import ErrorBoundary from "./ErrorBoundary"; | ||
import NetworkComponent from "./NetworkComponent"; | ||
|
||
import { web3Scripts } from '../../Scripts'; | ||
|
||
import Card from 'antd/lib/card'; | ||
import Col from 'antd/lib/col'; | ||
import Divider from 'antd/lib/divider'; | ||
import Icon from 'antd/lib/icon'; | ||
import Layout from 'antd/lib/layout'; | ||
import notification from 'antd/lib/notification'; | ||
import Row from 'antd/lib/row'; | ||
|
||
import 'antd/lib/card/style'; | ||
import 'antd/lib/col/style'; | ||
import 'antd/lib/divider/style'; | ||
import 'antd/lib/icon/style'; | ||
import 'antd/lib/layout/style'; | ||
import 'antd/lib/notification/style'; | ||
import 'antd/lib/row/style'; | ||
import { Explorers } from "../../Config"; | ||
|
||
class Beneficiaries extends Component { | ||
|
||
render () { | ||
return ( | ||
<Layout> | ||
<Row gutter={0} style={{ margin: '0 0 24px' }}> | ||
<Col span={24}> | ||
<h2>Benefeciaries</h2> | ||
</Col> | ||
</Row> | ||
</Layout> | ||
) | ||
} | ||
|
||
} | ||
|
||
Beneficiaries.propTypes = { | ||
} | ||
|
||
export default ErrorBoundary(NetworkComponent(Beneficiaries)); |
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