Metax
A ready-to-use React Helmet component for SEO, SMO and semantic web.Getting Started
- Install
```shell script
npm install metax
### 2. Import
```js
import { SEO } from "metax"
// or
const { SEO } = require("metax");
- Integrate
import React from "react"
import { SEO } from "metax"
const YourApp = () => (
<>
<SEO title={"Your page title"} />
<article>Your content</article>
</>
)