First Fiesta
Fiesta has some components ready to use out of the box.
Let's start by celebrating a birthday with some balloons:
import { Balloons } from 'react-native-fiesta';
function App() {
return (
<Balloons />
);
}
Full example​
import { StyleSheet, View } from 'react-native';
import { Balloons } from 'react-native-fiesta';
function App() {
return (
<View style={styles.container}>
<Balloons />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});