File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/samples/react/src/components/textarea Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { Routes } from '../../shares/types' ;
2
2
import { TextareaAdjustHeight } from './adjust-height' ;
3
3
import { TextareaBasic } from './basic' ;
4
- import { TextareaCounter } from './counter' ;
4
+ import { TextareaWithCounter } from './with- counter' ;
5
5
import { TextareaResize } from './resize' ;
6
6
import { TextareaRows } from './rows' ;
7
7
@@ -11,6 +11,6 @@ export const TEXTAREA_ROUTES: Routes = {
11
11
'adjust-height' : TextareaAdjustHeight ,
12
12
resize : TextareaResize ,
13
13
rows : TextareaRows ,
14
- 'with-counter' : TextareaCounter ,
14
+ 'with-counter' : TextareaWithCounter ,
15
15
} ,
16
16
} ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import React from 'react';
4
4
import { KolTextarea } from '@public-ui/react' ;
5
5
import { SampleDescription } from '../SampleDescription' ;
6
6
7
- export const TextareaCounter : FC = ( ) => (
7
+ export const TextareaWithCounter : FC = ( ) => (
8
8
< >
9
9
< SampleDescription >
10
10
< p >
You can’t perform that action at this time.
0 commit comments