mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-04 01:29:02 +00:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
import React, { Fragment } from 'react';
|
|
|
|
const Menu = ({ children }) => {
|
|
return <Fragment>{children}</Fragment>;
|
|
};
|
|
|
|
export default Menu;
|