Subscription config started

This commit is contained in:
2023-02-13 16:58:47 -05:00
parent 5710def735
commit bbfd82d802
2 changed files with 33 additions and 1 deletions
@@ -0,0 +1,25 @@
import React, { useState } from "react";
import { Link } from "react-router-dom";
import Icons from "../Helpers/Icons";
export default function SideMenuSub() {
return (
<>
<div className="top-platform bg-white dark:bg-dark-white rounded-2xl p-8 2xl:w-[268px] w-full 2xl:mb-10 2xl:border-none border ">
{/* heading */}
<div className="heading flex justify-between items-center mb-3.5">
<h3 className="text-xl font-bold text-dark-gray dark:text-white">
Subsription
</h3>
<div>
</div>
</div>
<div className="platform-list flex flex-col gap-4">
</div>
</div>
</>
);
}