Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
monako97 committed Apr 26, 2024
1 parent 6197937 commit 47376d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "templet-mobile-react",
"version": "2.1.1",
"version": "2.3.0",
"description": "H5 mobile应用模版",
"main": "index.js",
"scripts": {},
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useMemo } from 'react';
import localizable from '@app/locales';
import { useLocation } from 'react-router-dom';
import styles from './index.less';
import * as styles from './index.less';
import { matchUtil } from '../navigate-bar';

const Header = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigate-bar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import localizable from '@app/locales';
import { Link } from '@moneko/react';
import { useLocation } from 'react-router-dom';
import styles from './index.less';
import * as styles from './index.less';

function createHash() {
return Math.random().toString(36).substring(2);
Expand Down
2 changes: 1 addition & 1 deletion src/layout/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import localizable, { locales, setLang } from '@app/locales';
import { useOutlet } from 'react-router-dom';
import styles from './index.less';
import * as styles from './index.less';
import Header from '@/components/header';
import NavigatorBar from '@/components/navigate-bar';

Expand Down

0 comments on commit 47376d5

Please sign in to comment.