Vitro lets you overrides parts of the vitro ui to let you add more customization
You can create a file called vitro-overrides.jsx
and export some components to override specific parts of the Vitro UI
These customizations will be applied only to stories children of the vitro-overrides.jsx
directory
You can change the stories wrapper exporting a wrapper component
This will be applied before the wrapper exported from the stories file default export
1// vitro-overrides.jsx2import React from 'react'34export function Wrapper({ children, isisDark, isFullScreen, }) {5return <div style={{ textAlign: 'center' }}>{children}</div>6}
More overrides are coming! soon you will be able to override the header logo and footer for example