summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/components/home/ContentSection.js
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-web/opendc-web-ui/src/components/home/ContentSection.js')
-rw-r--r--opendc-web/opendc-web-ui/src/components/home/ContentSection.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/opendc-web/opendc-web-ui/src/components/home/ContentSection.js b/opendc-web/opendc-web-ui/src/components/home/ContentSection.js
deleted file mode 100644
index abaa565c..00000000
--- a/opendc-web/opendc-web-ui/src/components/home/ContentSection.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import PropTypes from 'prop-types'
-import React from 'react'
-import classNames from 'classnames'
-import { Container } from 'reactstrap'
-import { contentSection } from './ContentSection.module.scss'
-
-const ContentSection = ({ name, title, children, className }) => (
- <section id={name} className={classNames(className, contentSection)}>
- <Container>
- <h1>{title}</h1>
- {children}
- </Container>
- </section>
-)
-
-ContentSection.propTypes = {
- name: PropTypes.string.isRequired,
- title: PropTypes.string.isRequired,
- children: PropTypes.node,
- className: PropTypes.string,
-}
-
-export default ContentSection