mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
17 lines
506 B
JavaScript
17 lines
506 B
JavaScript
import React from 'react';
|
|
import { useSpring, animated } from 'react-spring';
|
|
import styles from './Modal.module.css';
|
|
|
|
export default function Modal({ title, children }) {
|
|
const props = useSpring({ opacity: 1, from: { opacity: 0 } });
|
|
|
|
return (
|
|
<animated.div className={styles.modal} style={props}>
|
|
<div className={styles.content}>
|
|
{title && <div className={styles.header}>{title}</div>}
|
|
<div className={styles.body}>{children}</div>
|
|
</div>
|
|
</animated.div>
|
|
);
|
|
}
|