add fee plateform calculator

This commit is contained in:
2025-04-26 04:09:40 +07:00
parent de25791eb4
commit 03212013e2
3 changed files with 14 additions and 8 deletions

View File

@@ -1,10 +1,11 @@
import { useState, useEffect } from 'react'
import {useEffect, useState} from 'react'
import { Tabs } from '../../components/mollecules'
import type { ITabsType } from '../../global/type'
import {Tabs} from '../../components/mollecules'
import type {ITabsType} from '../../global/type'
import RektFees from './rektFees'
import SpotlightView from './spotlight/spotlight'
import FeeCalculator from './feeCalculator'
const tabs: ITabsType = [
{
@@ -17,6 +18,11 @@ const tabs: ITabsType = [
index: 2,
label: 'RektFees',
},
{
Component: FeeCalculator,
index: 3,
label: 'Fee Calculator',
},
]
const Tools: React.FC = () => {