import React from 'react'; import {Col, Row} from "react-bootstrap"; import JoinAddressGroupCard from "../../components/cards/server/graphs/JoinAddressGroupCard"; import JoinAddressGraphCard from "../../components/cards/server/graphs/JoinAddressGraphCard"; import {useParams} from "react-router-dom"; import LoadIn from "../../components/animation/LoadIn"; const ServerJoinAddresses = () => { const {identifier} = useParams(); return (
) }; export default ServerJoinAddresses