native base for using tamplate
Install dependencies
npm install native-base
import React from "react"; import { NativeBaseProvider, Box } from "native-base"; export default function App() { return ( <NativeBaseProvider> <Box>Hello world</Box> </NativeBaseProvider> ); }e
Last updated 2 years ago
Was this helpful?