UNPKG

frontend-bootstrap-cli

Version:

Quickly bootstrap your frontend boilerplate library

19 lines (13 loc) 314 B
import React from "react"; import './HrLine.scss' const HrLine = (props) => { let { title } = props; return ( <div className="HrLine"> <hr className="HrLine--Length" /> {title} <hr className="HrLine--Length" /> </div> ) } export default HrLine;