---
title: "PageContainer Does Not Display Page Title and Watermark"
date: 2023-06-14T16:44:47.000Z
author: Z.SHINCHVEN
tags: [Ant Design Pro, ProLayout, ProComponents]
canonical: https://atlassc.net/2023/06/15/ant-design-pro-page-container-does-not-display-page-title-and-watermark
---
There are acturally 2 `PageContainer`, the one used by Ant Design Pro is from `@ant-design/pro-layout`, not `@ant-design/pro-components`.

If page title and watermark does not work in your `page`, make sure you imported the right one.

```diff
- import { PageContainer } from "@ant-design/pro-components";
+ import { PageContainer } from "@ant-design/pro-layout";
```

- This articale is based on Ant Design Pro V5.
