chore(style): backticks to single quotes (#49777)

This commit is contained in:
thinkasany 2024-07-09 10:50:32 +08:00 committed by GitHub
parent 680e7e9bb9
commit ca32dd5661
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ const MyPage = () => {
const showNotification = () => {
notification.info({
message: `Notification topLeft`,
message: 'Notification topLeft',
description: 'Hello, Ant Design!!',
placement: 'topLeft',
});

View File

@ -11,7 +11,7 @@ const MyPage = () => {
const showNotification = () => {
notification.info({
message: `Notification`,
message: 'Notification',
description: 'Hello, Ant Design!!',
});
};