Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gotti committed Nov 23, 2023
1 parent 1bca0ec commit a071087
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
onClick?: () => void;
}

export const TraficLight: React.FC<Props> = ({ position, isStop, onClick }) => {
export const TrafficLight: React.FC<Props> = ({ position, isStop, onClick }) => {
return (
<g
onClick={onClick}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { TrafficLight as TraficLight } from "./TraficLight";

This file was deleted.

0 comments on commit a071087

Please sign in to comment.