Skip to content

Commit

Permalink
row added again
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzitelli committed Aug 31, 2022
1 parent 690702a commit d39ceaf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/components/row.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import {View, ViewProps} from 'react-native-ui-lib';

export const Row: React.FC<ViewProps> = ({children, ...props}) => {
return (
<View row centerV {...props}>
{children}
</View>
);
};

0 comments on commit d39ceaf

Please sign in to comment.