Skip to content

Commit

Permalink
Fix path for helper function import
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamindehli committed Nov 28, 2023
1 parent 6e0012e commit b9ad5e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/stories/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import PropTypes from "prop-types";

// Stylesheets
import style from "./Header.module.scss";
import { classNameArrayToClassNameString } from "functions/helpers";

// Helpers
import { classNameArrayToClassNameString } from "../functions/helpers";

const Header = (props) => {
const bigClass = props.big ? style.bigHeader : "";
Expand Down

0 comments on commit b9ad5e0

Please sign in to comment.