mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-03 19:16:51 +00:00
8 lines
212 B
Plaintext
8 lines
212 B
Plaintext
import React from 'react';
|
|
|
|
// eslint-disable-next-line react/display-name
|
|
export default function(props) {
|
|
const { children } = props; // eslint-disable-line react/prop-types
|
|
return <div>{children}</div>;
|
|
}
|