Find the lifecycle bug in this generated styled-components wrapper.
JSX
import styled from 'styled-components';
export function SearchBox({ query, onChange }) {
const Field = styled.input`
border: 1px solid #94a3b8;
padding: 0.5rem;
`;
return <Field value={query} onChange={onChange} />;
}