### Install Package with npm
Source: https://github.com/lomray-software/react-head-manager/blob/prod/README.md
Installs the @lomray/react-head-manager package using npm, saving it as a production dependency.
```shell
npm i --save @lomray/react-head-manager
```
--------------------------------
### Basic Usage with Providers and Meta Component
Source: https://github.com/lomray-software/react-head-manager/blob/prod/README.md
Demonstrates the basic setup using MetaManagerProvider and ConsistentSuspenseProvider, and how to use the Meta component within a React component to manage head tags.
```typescript
import { ConsistentSuspenseProvider } from '@lomray/consistent-suspense';
import { MetaManagerProvider, Manager, Meta } from '@lomray/react-head-manager';
const manager = new Manager();
/**
* Root component container
*/
const App = ({ children }) => {
const [state] = useState();
return (