javascript 中级要点AuthLoadingSample

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 中级要点AuthLoadingSample相关的知识,希望对你有一定的参考价值。

import React from 'react';
import { storiesOf } from '@storybook/react-native';
import AuthLoading from '../../src/components/screen/AuthLoading';
import styled from 'styled-components/native';

const Container = styled.View`
  flex: 1;
`;

storiesOf('AuthLoadingSample', module)
  .add('default', () => (
    <Container>
      <AuthLoading />
    </Container>
  ));

以上是关于javascript 中级要点AuthLoadingSample的主要内容,如果未能解决你的问题,请参考以下文章

FCC上的javascript算法题之中级篇

javascript中级--ajax

javascript中级

最小公倍数:中级 Javascript 算法

javascript中级--DOM元素的创建插入删除

javascript 要点