VisionFTF / client / src / components / Subheader.js
Subheader.js
Raw
import React from 'react'
import { Container, Row, Col } from 'reactstrap';

const Subheader = ({path}) => {
    return (
        <div>
            <Container className="text-center " >
            <Row className="bg-orange round-border">
                <Col>
                <span className="orange text-white" style={{fontSize:"2em"}}>{path}</span>
                </Col>
            </Row>
        </Container>
        </div>
    )
}

export default Subheader