Skip to content

Commit b57af3d

Browse files
committed
Capitalize components & rename lib to hooks
1 parent 9218065 commit b57af3d

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

components/Snippets/index.js

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
import * as underlineLeftRight from './underlineLeftRight';
2-
import * as pulse from './pulse';
3-
import * as pressDownButton from './pressDownButton';
4-
import * as borderMarker from './borderMarker';
5-
import * as overlayLeft from './overlayLeft';
6-
import * as magnifyButton from './magnifyButton';
7-
import * as swing from './swing';
8-
import * as skeleton from './skeleton';
9-
import * as horizontalOverlay from './horizontalOverlay';
10-
import * as borderFade from './borderFade';
11-
import * as textTransformX from './textTransformX';
12-
import * as circleScaleButton from './circleScaleButton';
1+
import * as UnderlineLeftRight from './UnderlineLeftRight';
2+
import * as Pulse from './Pulse';
3+
import * as PressDownButton from './PressDownButton';
4+
import * as BorderMarker from './BorderMarker';
5+
import * as OverlayLeft from './OverlayLeft';
6+
import * as MagnifyButton from './MagnifyButton';
7+
import * as Swing from './Swing';
8+
import * as Skeleton from './Skeleton';
9+
import * as HorizontalOverlay from './HorizontalOverlay';
10+
import * as BorderFade from './BorderFade';
11+
import * as TextTransformX from './TextTransformX';
12+
import * as CircleScaleButton from './CircleScaleButton';
1313

1414
const allSnippets = [
15-
underlineLeftRight,
16-
pulse,
17-
pressDownButton,
18-
borderMarker,
19-
overlayLeft,
20-
magnifyButton,
21-
swing,
22-
skeleton,
23-
horizontalOverlay,
24-
borderFade,
25-
textTransformX,
26-
circleScaleButton
15+
UnderlineLeftRight,
16+
Pulse,
17+
PressDownButton,
18+
BorderMarker,
19+
OverlayLeft,
20+
MagnifyButton,
21+
Swing,
22+
Skeleton,
23+
HorizontalOverlay,
24+
BorderFade,
25+
TextTransformX,
26+
CircleScaleButton
2727
];
2828

2929
export default allSnippets;
File renamed without changes.

pages/_app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { globalStyles } from 'styles/global';
22
import 'vercel-toast/dist/vercel-toast.css';
33

4-
import { useAnalytics } from 'lib/analytics';
4+
import { useAnalytics } from 'hooks/analytics';
55
import Header from 'components/Header';
66
import Head from 'components/Head';
77

0 commit comments

Comments
 (0)