mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
14 lines
257 B
JavaScript
14 lines
257 B
JavaScript
import React from 'react';
|
|
import UF from '@site/src/components/UserFeedback';
|
|
|
|
// Default implementation, that you can customize
|
|
function Root({ children }) {
|
|
return (
|
|
<>
|
|
{children} <UF />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Root;
|