# Footer Earlier we were using `renderFooter` prop to render custom footer which was removed in [#5970](https://github.com/excalidraw/excalidraw/pull/5970). Now you can pass a `Footer` component instead to render the custom UI for footer. You will need to import the `Footer` component from the package and wrap your component with the Footer component. The `Footer` should a valid React Node. **Usage** ```jsx live function App() { return (
); } ``` This will only for `Desktop` devices. For `mobile` you will need to render it inside the [MainMenu](#mainmenu). You can use the [`useDevice`](#useDevice) hook to check the type of device, this will be available only inside the `children` of `Excalidraw` component. Open the `Menu` in the below playground and you will see the `custom footer` rendered. ```jsx live noInline const MobileFooter = ({}) => { const device = useDevice(); if (device.editor.isMobile) { return ( ); } return null; }; const App = () => (
Item1 Item 2
); // Need to render when code is span across multiple components // in Live Code blocks editor render(); ```