fix(docs): fix build (#3571)
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
.paragraphStyle {
|
||||
margin-top: 10;
|
||||
}
|
||||
|
||||
.spanStyle {
|
||||
font-family: 'Orbitron';
|
||||
font-weight: 800;
|
||||
}
|
@@ -1,28 +0,0 @@
|
||||
import React from 'react';
|
||||
import styles from './PlatformsList.module.css';
|
||||
|
||||
type Platform =
|
||||
| 'Android'
|
||||
| 'iOS'
|
||||
| 'visionOS'
|
||||
| 'tvOS'
|
||||
| 'Windows UWP'
|
||||
| 'Web'
|
||||
| 'All';
|
||||
|
||||
interface Platforms {
|
||||
types: Platform[];
|
||||
}
|
||||
|
||||
function PlatformsList({types}: Platforms) {
|
||||
return (
|
||||
<p className={styles.paragraphStyle}>
|
||||
{types.length === 1 && !types.includes('All')
|
||||
? 'Platform:'
|
||||
: 'Platforms:'}
|
||||
<span className={styles.spanStyle}>{' ' + types.join(' | ')}</span>
|
||||
</p>
|
||||
);
|
||||
}
|
||||
|
||||
export default PlatformsList;
|
@@ -1,4 +1,4 @@
|
||||
import PlatformsList from './PlatformsList/PlatformsList.tsx';
|
||||
import PlatformsList from '../../components/PlatformsList/PlatformsList.tsx';
|
||||
|
||||
# DRM
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import PlatformsList from './PlatformsList/PlatformsList.tsx';
|
||||
import PlatformsList from '../../components/PlatformsList/PlatformsList.tsx';
|
||||
|
||||
# Events
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import PlatformsList from './PlatformsList/PlatformsList.tsx';
|
||||
import PlatformsList from '../../components/PlatformsList/PlatformsList.tsx';
|
||||
|
||||
# Methods
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import PlatformsList from './PlatformsList/PlatformsList.tsx';
|
||||
import PlatformsList from '../../components/PlatformsList/PlatformsList.tsx';
|
||||
|
||||
# Configurable props
|
||||
|
||||
|
Reference in New Issue
Block a user