mirror of
https://github.com/20kaushik02/spotify-manager-web.git
synced 2025-12-06 07:44:07 +00:00
18 lines
432 B
TypeScript
18 lines
432 B
TypeScript
import React from "react";
|
|
import styles from "./Settings.module.css";
|
|
import Button from "../../components/Button/index.tsx";
|
|
|
|
const Settings = (): React.ReactNode => {
|
|
return (
|
|
<div className={styles.settings_wrapper}>
|
|
<h1>Settings</h1>
|
|
<div className={styles.settings_controls}>
|
|
<Button>Export Data</Button>
|
|
<Button>Import Data</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Settings;
|