mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex-taker-v2.git
synced 2026-09-22 09:12:00 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f8c14cc1fb | ||
|
|
2e4fd9f876 |
@@ -48,7 +48,7 @@ const TABLE_HEADERS = [
|
||||
}
|
||||
]
|
||||
|
||||
function Offers (props) {
|
||||
function Fungible (props) {
|
||||
const [appData] = useState(props.appData)
|
||||
const [offers, setOffers] = useState([])
|
||||
|
||||
@@ -237,4 +237,4 @@ function Offers (props) {
|
||||
)
|
||||
}
|
||||
|
||||
export default Offers
|
||||
export default Fungible
|
||||
@@ -28,7 +28,7 @@ import Profile from './nostr/profile/index.js'
|
||||
import Feeds from './nostr/feeds/index.js'
|
||||
import ContentCreators from './nostr/content-creators/index.js'
|
||||
import UserDataReview from './user-data-review'
|
||||
import Offers from './offers'
|
||||
import Fungible from './fungible'
|
||||
import NostrChat from './nostr-chat'
|
||||
import CounterOffers from './counter-offers'
|
||||
function AppBody (props) {
|
||||
@@ -55,7 +55,7 @@ function AppBody (props) {
|
||||
<Route path='/feeds' element={<Feeds appData={appData} />} />
|
||||
<Route path='/content-creators' element={<ContentCreators appData={appData} />} />
|
||||
<Route path='/user-data/:tokenId' element={<UserDataReview appData={appData} />} />
|
||||
<Route path='/offers' element={<Offers appData={appData} />} />
|
||||
<Route path='/fungible' element={<Fungible appData={appData} />} />
|
||||
<Route path='/counter-offers' element={<CounterOffers appData={appData} />} />
|
||||
<Route path='/nostr-chat' element={<NostrChat appData={appData} />} />
|
||||
</Routes>
|
||||
|
||||
@@ -51,8 +51,8 @@ function NavMenu (props) {
|
||||
</NavLink>
|
||||
|
||||
<NavLink
|
||||
className={currentPath === '/offers' ? 'nav-link-active' : 'nav-link-inactive'}
|
||||
to='/offers'
|
||||
className={currentPath === '/fungible' ? 'nav-link-active' : 'nav-link-inactive'}
|
||||
to='/fungible'
|
||||
onClick={handleClickEvent}
|
||||
>
|
||||
Fungible Tokens
|
||||
|
||||
Reference in New Issue
Block a user