Commit a520889e by Vladislav Lagunov

Исправления примеров в CHANGELOG.md

parent 56b94f2a
...@@ -14,12 +14,12 @@ ...@@ -14,12 +14,12 @@
следующим образом следующим образом
``` ```
- import { Eff, eff, ... } from '@bitmaster/core'; - import { Eff, eff, ... } from '../common/core';
+ import { Eff, eff, ... } from './src/common/core'; + import { Eff, eff, ... } from './src/common/core';
- import { pgettxt, Gettext, ... } from '@bitmaster/utils/gettext'; - import { pgettxt, Gettext, ... } from '../common/utils/gettext';
+ import { pgettxt, Gettext, ... } from './src/common/utils/gettext; + import { pgettxt, Gettext, ... } from './src/common/utils/gettext;
- import Pagination from '@bitmaster/components/Pagination'; - import Pagination from '../Pagination';
+ import Pagination from './src/common/Pagination; + import Pagination from './src/common/Pagination;
``` ```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment