56 lines
991 B
Plaintext
56 lines
991 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Footnote component when children are present, renders them 1`] = `
|
|
<View
|
|
style={
|
|
{
|
|
"alignContent": "flex-start",
|
|
"flexDirection": "row",
|
|
"marginBottom": 8.571428571428571,
|
|
"marginTop": 34.285714285714285,
|
|
}
|
|
}
|
|
>
|
|
<Text
|
|
style={
|
|
[
|
|
{
|
|
"color": "#555",
|
|
"fontFamily": "Jost-Book",
|
|
"fontSize": 34.285714285714285,
|
|
},
|
|
{
|
|
"color": "#F38337",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
*
|
|
</Text>
|
|
<Text
|
|
linkStyle={
|
|
{
|
|
"color": "white",
|
|
}
|
|
}
|
|
style={
|
|
[
|
|
{
|
|
"color": "#555",
|
|
"fontFamily": "Jost-Book",
|
|
"fontSize": 34.285714285714285,
|
|
},
|
|
{
|
|
"color": "#555",
|
|
"paddingLeft": 21.428571428571427,
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Some footnote text
|
|
</Text>
|
|
</View>
|
|
`;
|
|
|
|
exports[`Footnote component when no children, renders nothing 1`] = `null`;
|