File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
components/dashboard/src/settings Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 6
6
7
7
import { PageWithSettingsSubMenu } from "./PageWithSettingsSubMenu" ;
8
8
import { BillingAccountSelector } from "../components/BillingAccountSelector" ;
9
+ import UsageBasedBillingConfig from "../components/UsageBasedBillingConfig" ;
9
10
10
11
export default function Billing ( ) {
11
12
return (
12
13
< PageWithSettingsSubMenu title = "Billing" subtitle = "Usage-Based Billing." >
13
14
< div >
14
15
< h3 > Billing Account</ h3 >
15
16
< BillingAccountSelector />
17
+ < h3 className = "mt-12" > Usage-Based Billing</ h3 >
18
+ < UsageBasedBillingConfig
19
+ userOrTeamId = { "" }
20
+ showSpinner = { false }
21
+ showUpgradeBilling = { true }
22
+ showManageBilling = { false }
23
+ doUpdateLimit = { function ( _ : number ) : Promise < void > {
24
+ throw new Error ( "Function not implemented." ) ;
25
+ } }
26
+ />
16
27
</ div >
17
28
</ PageWithSettingsSubMenu >
18
29
) ;
You can’t perform that action at this time.
0 commit comments