forked from cerc-io/snowballtools-base
* Refactor routes with layout and show search bar in project details page * Set common search layout for child routes
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
import React from 'react';
|
|
|
|
const Settings = () => {
|
|
return <div className="p-5">Settings page</div>;
|
|
};
|
|
|
|
export default Settings;
|