import React from 'react' import './FAQ.scss' export default function FAQ({ title, children }) { return (

{title}

{children}
) }