mirror of
https://github.com/zoriya/react-native-video.git
synced 2026-06-19 16:42:22 +00:00
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import type { TypedSidebarsConfig } from '@widlarzgroup/docusaurus-ui';
|
|
|
|
const sidebars: TypedSidebarsConfig = {
|
|
docsSidebar: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '.',
|
|
},
|
|
{
|
|
type: 'html',
|
|
value:
|
|
'<hr style="margin: 1rem 0; border: none; border-top: 1px solid var(--ifm-color-emphasis-300);" />',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Example Apps',
|
|
href: 'https://github.com/TheWidlarzGroup/react-native-video/tree/master/example',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Useful Projects',
|
|
id: 'projects',
|
|
},
|
|
{
|
|
type: 'html',
|
|
value:
|
|
'<hr style="margin: 1rem 0; border: none; border-top: 1px solid var(--ifm-color-emphasis-300);" />',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Offer',
|
|
href: '/react-native-video/docs/v7/offer',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Boost Your Issue',
|
|
href: 'https://www.thewidlarzgroup.com/issue-boost/?utm_source=rnv&utm_medium=docs&utm_campaign=sidebar&utm_id=issue-boost-button',
|
|
},
|
|
{
|
|
type: 'html',
|
|
value:
|
|
'<hr style="margin: 1rem 0; border: none; border-top: 1px solid var(--ifm-color-emphasis-300);" />',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Updating',
|
|
id: 'updating',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Releases',
|
|
href: 'https://github.com/TheWidlarzGroup/react-native-video/releases',
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|