Core Components

Essential React components for building Open Ledger applications.

Open Ledger Provider

The root component that provides authentication and context to all child components.

TypeScript
1import { OpenLedgerProvider } from "@openledger/accounting-react";
2
3function App() {
4 return (
5 <OpenLedgerProvider
6 companyId="your-company-id"
7 enterpriseId="your-enterprise-id"
8 enterpriseSecret="your-enterprise-secret"
9 environment="development"
10 theme={yourThemeObject}
11 apiUrl="your-api-url"
12 >
13 <YourApp />
14 </OpenLedgerProvider>
15 );
16}
PropTypeRequiredDescription
companyIdstringYesYour Open Ledger company ID
enterpriseIdstringYesYour enterprise ID
enterpriseSecretstringYesYour enterprise secret
environment”development” | “production”NoAPI environment
themeConfigure ColorsNoCustom theme configuration
fillerDatabooleanNoUse sample data for development
apiUrlstringNoCustom API URL