Files
old-v2-frontend/src/components/SectionIntro.js

13 lines
257 B
JavaScript
Raw Normal View History

2018-06-30 14:56:04 +02:00
import React from 'react'
import Link from 'gatsby-link'
const IntroDefault = ({ intro, headline, text, classes }) => (
<div className={`${classes}`}>
<h3>{intro}</h3>
<h1>{headline}</h1>
<p>{text}</p>
</div>
2018-06-30 14:56:04 +02:00
)
export default IntroDefault