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

12 lines
249 B
JavaScript
Raw Normal View History

import React from 'react'
import Link from 'gatsby-link'
const InfoBox = ({ ...props }) => (
<div className={`${props.classes}`}>
<h2>{props.headline}</h2>
<p className="leading-normal">{props.text}</p>
</div>
)
export default InfoBox