We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a094f9 commit 779db89Copy full SHA for 779db89
src/components/Layout/PageTitle.component.tsx
@@ -1,6 +1,5 @@
1
interface IPageTitleProps {
2
title: string;
3
- marginLeft?: boolean;
4
}
5
6
/**
@@ -10,7 +9,7 @@ interface IPageTitleProps {
10
9
* @param {string} title - Title for the page. Is set in <title>{title}</title>
11
* @returns {JSX.Element} - Rendered component
12
*/
13
-const PageTitle = ({ title, marginLeft }: IPageTitleProps) => (
+const PageTitle = ({ title }: IPageTitleProps) => (
14
<section className="w-full bg-white border-b border-gray-200">
15
<div className="container mx-auto py-12 px-6">
16
<h1 className="text-2xl text-center tracking-wider text-gray-900 uppercase">
0 commit comments