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