import React from 'react'; import CenteredContent from 'components/CenteredContent'; import { Button } from 'rebass'; import styles from './FullscreenField.scss'; import classNames from 'classnames/bind'; const cx = classNames.bind(styles); class FullscreenField extends React.Component { render() { return (

Create a new collection

Collections are spaces where you, your teams or friends can share and collect information.

Collection name
Description
); } } export default FullscreenField;