create-alistt69-kit 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { RouterProvider } from 'react-router-dom';
|
|
2
2
|
import { appRouter } from './providers/router/config/router';
|
|
3
|
+
import styles from './styles.module.scss';
|
|
3
4
|
|
|
4
5
|
function App() {
|
|
5
6
|
return (
|
|
6
|
-
<
|
|
7
|
+
<div className={styles.app_wrapper}>
|
|
8
|
+
<RouterProvider router={appRouter} />
|
|
9
|
+
</div>
|
|
7
10
|
);
|
|
8
11
|
}
|
|
9
12
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare module '*.module.scss' {
|
|
2
|
+
type IClassNames = Record<string, string>;
|
|
3
|
+
|
|
4
|
+
const classNames: IClassNames;
|
|
5
|
+
export = classNames;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
declare module '*.png';
|
|
9
|
+
declare module '*.jpg';
|
|
10
|
+
declare module '*.jpeg';
|
|
11
|
+
declare module '*.svg' {
|
|
12
|
+
import { FC, SVGProps } from 'react';
|
|
13
|
+
|
|
14
|
+
const SVG: FC<SVGProps<SVGSVGElement>>;
|
|
15
|
+
export default SVG;
|
|
16
|
+
}
|