Skip to content

Commit

Permalink
style: change filename from uppercase to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
hee-suh committed Jun 13, 2024
1 parent bad47c6 commit 0c61cc3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/app/cc/error.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client'

import { useEffect } from 'react'
import { Button } from '@/components/Button'
import { Button } from '@/components/button'

const Error = ({
error,
Expand Down
2 changes: 1 addition & 1 deletion src/app/cc/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import React, { Suspense, use } from 'react'

import { fetchData } from '@/app/data'
import { Button } from '@/components/Button'
import { Button } from '@/components/button'
import LoadingIndicator from '@/components/loading-indicator'
import { ResponseOk } from '@/models/interface'

Expand Down
2 changes: 1 addition & 1 deletion src/app/rsc/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Suspense } from 'react'

import { fetchData } from '@/app/data'
import { Button } from '@/components/Button'
import { Button } from '@/components/button'
import LoadingIndicator from '@/components/loading-indicator'
import { ResponseOk } from '@/models/interface'

Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'

import { Button } from './Button'
import { Button } from './button'

type User = {
name: string
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Button.stories.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from '@storybook/react'
import { fn } from '@storybook/test'
import { Button } from '@/components/Button'
import { Button } from '@/components/button'

// More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export
const meta = {
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Header.stories.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from '@storybook/react'
import { fn } from '@storybook/test'
import { Header } from '../components/Header'
import { Header } from '@/components/header'

const meta = {
title: 'Example/Header',
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Page.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from '@storybook/react'
import { within, userEvent, expect } from '@storybook/test'

import { Page } from './Page'
import { Page } from './page'

const meta = {
title: 'Example/Page',
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'

import { Header } from '@/components/Header'
import { Header } from '@/components/header'

type User = {
name: string
Expand Down

0 comments on commit 0c61cc3

Please sign in to comment.