Skip to content

Commit fb4c075

Browse files
committed
Update libraries
Add Info panel
1 parent 1fabfcb commit fb4c075

35 files changed

+1432
-1074
lines changed

client/Lang.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ export const Lang = {
66
ABOUT_QUESTIONS_STARTWITHMD: 'about.questions.startWithMD',
77
ABOUT_QUESTIONS_STARTWITHREDUX: 'about.questions.startWithRedux',
88
ABOUT_WITHTYPESCRIPT: 'about.withTypescript',
9+
INFO_TITLE: 'info.title',
10+
INFO_DESCRIPTION: 'info.description',
911
TECH_REACT: 'tech.react',
1012
TECH_MD: 'tech.md',
1113
TECH_REDUX: 'tech.redux',
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './LightbublFullIcon';
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from './icon';
2+
export * from './menu';
3+
export * from './page';
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './LeftMenu';
File renamed without changes.
File renamed without changes.

client/components/Layout.tsx renamed to client/modules/common/components/page/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from 'react';
22
import {InjectedIntlProps, injectIntl} from 'react-intl';
3-
import {AppFrame, Content, LeftMenu, TopBar} from './';
3+
import {AppFrame, Content, LeftMenu, TopBar} from '../';
44

55
interface OwnProps {}
66

client/components/TopBar.tsx renamed to client/modules/common/components/page/TopBar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import Link from 'next/link';
44
import * as React from 'react';
55
import {FormattedMessage} from 'react-intl';
66

7-
import {ThemeContext} from '../contexts';
8-
import {Lang} from '../Lang';
9-
import {LightbublFullIcon} from './LightbublFullIcon';
7+
import {ThemeContext} from '../../../../contexts';
8+
import {Lang} from '../../../../Lang';
9+
import {LightbublFullIcon} from '../icon';
1010

1111
interface Props {
1212
readonly locale: string;

0 commit comments

Comments
 (0)