1.1 Setup
Step 1: Initialize the project
# Create a project named my-app.
# Select the "blank (Typescript)" template when prompted
expo init bluebase-todo-app
# Navigate to the project directory
cd bluebase-todo-appStep 2: Install BlueBase package
yarn add @bluebase/coreStep 3: Update App File
import React from 'react';
import { BlueBaseApp } from '@bluebase/core';
export default function App() {
return (
<BlueBaseApp />
);
}Step 4: Run App



Last updated
Was this helpful?