import React from 'react' import stl from './information.module.css' import cn from 'classnames' function Information({ primary = true, content = '' }) { return (
{ content }
) } export default Information