7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
|
import React from 'react';
|
||
|
import { View } from 'react-native';
|
||
|
|
||
|
export default function LineBreak() {
|
||
|
return <View style={{ height: 8 }} />;
|
||
|
}
|