mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { Redirect } from 'react-router-dom';
|
|
|
|
export default function DefaultRoute() {
|
|
const defaultTab = '/preferences/general';
|
|
|
|
return (<Redirect from='/preferences' to={defaultTab} />);
|
|
} |