Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
use React.Fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaut committed Feb 25, 2019
1 parent 6a1a3ae commit d8c31de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fether-ui/src/Modal/Modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const Modal = ({
title,
visible
}) => (
<div className='alert-wrapper'>
<React.Fragment>
<SUIModal
className={`alert-screen-wrapper ${fullscreen ? '-full-screen' : ''}`}
open={visible}
Expand All @@ -43,7 +43,7 @@ export const Modal = ({
</div>
</SUIModal>
{children}
</div>
</React.Fragment>
);

Modal.propTypes = {
Expand Down

0 comments on commit d8c31de

Please sign in to comment.