Skip to content

Commit

Permalink
Update 3 file(page.tsx) for dynamic export
Browse files Browse the repository at this point in the history
  • Loading branch information
1lsang committed Nov 5, 2024
1 parent bd8bdba commit 5dfb01c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/frame/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import SVGGoToList from '@/styles/icons/gotolist.svg';
import DownloadImage from '@/utils/DownloadImage';
import SelectFrame from './_components/SelectFrame';

export function FrameSelectView() {
function FrameSelectView() {
const [colorOfCircle, setColorOfCircle] = useState<string>('');
const [isPremiumSelected, setIsPremiumSelected] = useState<boolean>(false);
const [selectedPhoto, setSelectedPhoto] = useAtom(
Expand Down
2 changes: 1 addition & 1 deletion src/app/list/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
import EmptyList from './_components/EmptyList';
import ImageList from './_components/ImageList';

export function ListView() {
function ListView() {
const [list, setList] = useState<string[]>([]);
const [loading, setLoading] = useState(false);
const setErrorMessage = useSetAtom(errorMessageAtom);
Expand Down
2 changes: 1 addition & 1 deletion src/app/waiting/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
} from '@/store/atoms/errorMessageAtom';
import SVGLink from '@/styles/icons/link.svg';

export function WaitingView() {
function WaitingView() {
const [url, setUrl] = useState<string>('');
const copyRef = useRef<HTMLButtonElement>(null);
const setErrorMessage = useSetAtom(errorMessageAtom);
Expand Down

0 comments on commit 5dfb01c

Please sign in to comment.