update parcel so it actually works and doesn't crash

but still use postcss because otherwise blueprint.js doesn't compile
This commit is contained in:
2022-04-04 19:26:27 +00:00
committed by Stepan Usatiuk
parent 24c656c9f1
commit 048ad9aa70
6 changed files with 2840 additions and 3504 deletions

View File

@@ -31,9 +31,9 @@ export interface IOverviewComponentProps {
fetchPhotos: () => void;
}
export const OverviewComponent: React.FunctionComponent<IOverviewComponentProps> = (
props,
) => {
export const OverviewComponent: React.FunctionComponent<
IOverviewComponentProps
> = (props) => {
const [selectedPhoto, setSelectedPhoto] = React.useState<number>(0);
const [isOverlayOpened, setOverlayOpen] = React.useState<boolean>(false);