6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
|
export default interface SEOComponent {
|
||
|
metaTitle: string;
|
||
|
metaDescription: string;
|
||
|
keywords: string;
|
||
|
}
|