docbrown/app/javascript/chat/RequestManager/HeaderSection.jsx
Katie Davis 76453b41fb
Updates ESLint rules to error on default imports (#12512)
* add rule

* add named imports

* more missed files

* so many files
2021-02-02 10:24:03 -05:00

12 lines
289 B
JavaScript

import { h } from 'preact';
export const HeaderSection = ({}) => (
<div className="request_manager_header crayons-card mb-6 grid grid-flow-row gap-6 p-6">
<h1>
Request Center{' '}
<span role="img" aria-label="handshake">
🤝
</span>
</h1>
</div>
);