File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,13 @@ const Contributors = glamorous(About)({
5858
5959const formatPeopleList = arr => arr . map ( w => w . replace ( ' ' , ' ' ) ) . join ( ' • ' )
6060
61+ type Props = TopLevelViewPropsType
62+
63+ type State = {
64+ supported : boolean ,
65+ iconType : null | string ,
66+ }
67+
6168export default class CreditsView extends React . Component < Props , State > {
6269 static navigationOptions = {
6370 title : 'Credits' ,
@@ -99,7 +106,9 @@ export default class CreditsView extends React.Component<Props, State> {
99106 < Contributors > { formatPeopleList ( credits . contributors ) } </ Contributors >
100107
101108 < Heading > Acknowledgements</ Heading >
102- < Contributors > { formatPeopleList ( credits . acknowledgements ) } </ Contributors >
109+ < Contributors >
110+ { formatPeopleList ( credits . acknowledgements ) }
111+ </ Contributors >
103112 </ Container >
104113 )
105114 }
You can’t perform that action at this time.
0 commit comments