Billing Activity

alt text

A component that displays a merchant's subscription history and billing activity. It's primarily used in billing settings, but can be used in other parts of the application.

Usage

import { BillingActivity } from "../BillingActivity"
 
function MyComponent() {
  return (
    <>
      {/* rest of code */}
      <BillingActivity />
      {/* rest of code */}
    </>
  )
}