forked from cerc-io/snowballtools-base
* Implement layout for the projects page * Organize pages according to routes * Handle data from search bar * Get search data on submit --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import React from 'react';
|
|
|
|
const Settings = () => {
|
|
return <div className="bg-white rounded-3xl h-full">Settings page</div>;
|
|
};
|
|
|
|
export default Settings;
|