Skip to content
This repository was archived by the owner on Jun 5, 2019. It is now read-only.

Commit 76d24d3

Browse files
authored
Merge pull request #35 from skellock/crazy-barrels
Adds barrels everywhere and moves app to features.
2 parents c1382b9 + 675fab4 commit 76d24d3

File tree

13 files changed

+19
-11
lines changed

13 files changed

+19
-11
lines changed

src/renderer/app/app.tsx renamed to src/renderer/features/app/app.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 { CSSProperties } from 'react'
3-
import { WelcomeScreen } from '../features'
3+
import { WelcomeScreen } from '..'
44

55
// this is in place to claim 100% of the viewport and not scroll.
66
const rootStyle: CSSProperties = { overflow: 'hidden', height: '100vh', display: 'flex' }

src/renderer/features/app/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './app'

src/renderer/features/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export * from './example-using-tabs'
2+
export * from './app'

src/renderer/index.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 * as ReactDOM from 'react-dom'
3-
import { App } from './app/app'
3+
import { App } from './features'
44

55
ReactDOM.render(<App />, document.getElementById('root'))
66

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './centered-content'
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export * from './text/text'
2-
export * from './scrollable-content/scrollable-content'
3-
export * from './centered-content/centered-content'
4-
export * from './tab/tab'
1+
export * from './text'
2+
export * from './scrollable-content'
3+
export * from './centered-content'
4+
export * from './tab'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './scrollable-content'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './tab'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './text'

src/renderer/platform/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
export * from './theme/colors'
2-
export * from './theme/spacing'
3-
export * from './theme/fontSizes'
4-
export * from './theme/fonts'
51
export * from './utils'
2+
export * from './theme'
63
export * from './components'

0 commit comments

Comments
 (0)