mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
393 B
TypeScript
14 lines
393 B
TypeScript
import SettingsNavbar from "layouts/settings-navbar";
|
|
|
|
export const SettingsHeader = () => (
|
|
<div className="mb-8 space-y-6">
|
|
<div>
|
|
<h3 className="text-2xl font-semibold">Project Settings</h3>
|
|
<p className="mt-1 text-sm text-brand-secondary">
|
|
This information will be displayed to every member of the project.
|
|
</p>
|
|
</div>
|
|
<SettingsNavbar />
|
|
</div>
|
|
);
|