Skip to content

Commit bb69af1

Browse files
Merge pull request #45 from CivicTechAtlanta/steve-build-fixes
build fix
2 parents 247b244 + 485523e commit bb69af1

File tree

1 file changed

+2
-0
lines changed
  • src/app/mother-solution-concentration/components

1 file changed

+2
-0
lines changed

src/app/mother-solution-concentration/components/Input.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import "../styles/Input.css"
2+
import type React from "react";
23

34
type InputProps = {
45
label: string;
56
name: string;
67
handleChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
78
min?: string;
9+
defaultValue?: string;
810
};
911

1012
export default function Input({ label, name, min, defaultValue, handleChange }: InputProps) {

0 commit comments

Comments
 (0)