Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

BlankPage.web.js 373B

12345678910
  1. import AbstractBlankPage from './AbstractBlankPage';
  2. /**
  3. * Default <tt>BlankPage</tt> implementation for Web/React. It's not currently
  4. * in use but it's here for symmetry with mobile/React Native should we choose
  5. * to take advantage of it in the future. Destroys the local tracks and renders
  6. * nothing.
  7. */
  8. export default class BlankPage extends AbstractBlankPage {
  9. }