rootstrap/react-native-use-animate

View on GitHub
demo/src/components/ParallelAnimatedBox/styles.js

Summary

Maintainability
A
0 mins
Test Coverage
import { StyleSheet } from 'react-native';
import { RED } from '../../constants/colors';

export const BOX_SIZE = 100;

export default StyleSheet.create({
  box: {
    width: BOX_SIZE,
    height: BOX_SIZE,
    backgroundColor: RED,
  },
});