25 lines
668 B
JavaScript
25 lines
668 B
JavaScript
|
import React, { Component } from 'react';
|
||
|
import './pricing-plan.css';
|
||
|
|
||
|
class PricingPlan extends Component {
|
||
|
|
||
|
render(){
|
||
|
return(
|
||
|
<div className="body">
|
||
|
<section class='pricing-plan'>
|
||
|
<div class='pricing-plan__header'>
|
||
|
<h1 class='pricing-plan__title'>Basic Package</h1>
|
||
|
<h2 class='pricing-plan__summary'>For those getting started</h2>
|
||
|
|
||
|
</div>
|
||
|
<div class='pricing-plan__desc'>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
export default PricingPlan;
|