mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-23 12:01:12 -05:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
import { navigate } from 'gatsby';
|
|
|
|
const RedirectHome = () => {
|
|
if (typeof window !== 'undefined') {
|
|
navigate('/');
|
|
}
|
|
return null;
|
|
};
|
|
|
|
export default RedirectHome;
|