Skip to content

Commit 12f3c87

Browse files
committed
docs: fix docs build
1 parent b585df1 commit 12f3c87

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

docs/examples/addon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Input from 'rc-input';
1+
import Input from '@rc-component/input';
22
import type { FC } from 'react';
33
import React from 'react';
44
import '../../assets/index.less';

docs/examples/allow-clear.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { ChangeEvent, FC } from 'react';
22
import React, { useState } from 'react';
33
import '../../assets/index.less';
4-
import Input from 'rc-input';
4+
import Input from '@rc-component/input';
55

66
const Demo: FC = () => {
77
const [value, setValue] = useState<string>('');

docs/examples/basic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { FC } from 'react';
22
import React from 'react';
33
import '../../assets/index.less';
4-
import Input from 'rc-input';
4+
import Input from '@rc-component/input';
55

66
const Demo: FC = () => (
77
<Input prefixCls="rc-input" style={{ marginLeft: 200 }} />

docs/examples/prefix-suffix.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Input from 'rc-input';
1+
import Input from '@rc-component/input';
22
import type { FC } from 'react';
33
import React from 'react';
44
import '../../assets/index.less';

docs/examples/show-count.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Input from 'rc-input';
1+
import Input from '@rc-component/input';
22
import type { FC } from 'react';
33
import React from 'react';
44
import '../../assets/index.less';

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"paths": {
1616
"@/*": ["src/*"],
1717
"@@/*": [".dumi/tmp/*"],
18-
"rc-input": ["src/index.tsx"],
1918
"@rc-component/input": ["src/index.tsx"]
2019
}
2120
},

0 commit comments

Comments
 (0)