Skip to content

Commit 603c098

Browse files
committed
remove typescript example
1 parent 7f234d8 commit 603c098

File tree

114 files changed

+3934
-19843
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+3934
-19843
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
| | Example | Descrption |
88
| --- | --- | --- |
99
| 1.| [sqlite](https://github.com/electron-react-boilerplate/examples/tree/master/examples/sqlite) | Bundling and using SQLite with ERB |
10-
| 2.| [typescript](https://github.com/electron-react-boilerplate/examples/tree/master/examples/typescript) | Type checking with TS with React support |
1110

1211
## Notable Forks
1312

@@ -33,7 +32,6 @@ Miscellaneous Example
3332
* [importing audio files example](https://github.com/amilajack/erb-audio-example)
3433
* [reading local files at runtime in dev and prod env](https://github.com/amilajack/erb-local-fs-read-example)
3534

36-
3735
## Setup
3836

3937
```bash

examples/sqlite/app/Routes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { Switch, Route } from 'react-router';
3-
import routes from './constants/routes';
3+
import routes from './constants/routes.json';
44
import App from './containers/App';
55
import HomePage from './containers/HomePage';
66
import CounterPage from './containers/CounterPage';

examples/sqlite/app/components/Counter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import React, { Component } from 'react';
33
import { Link } from 'react-router-dom';
44
import styles from './Counter.css';
5-
import routes from '../constants/routes';
5+
import routes from '../constants/routes.json';
66

77
type Props = {
88
increment: () => void,

examples/sqlite/app/components/Home.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import React, { Component } from 'react';
44
import { Link } from 'react-router-dom';
55
import sqlite from 'sqlite3';
6-
import routes from '../constants/routes';
6+
import routes from '../constants/routes.json';
77
import styles from './Home.css';
88

99
type Props = {};

examples/typescript/.dockerignore

Lines changed: 0 additions & 52 deletions
This file was deleted.

examples/typescript/.editorconfig

Lines changed: 0 additions & 12 deletions
This file was deleted.

examples/typescript/.eslintignore

Lines changed: 0 additions & 56 deletions
This file was deleted.

examples/typescript/.eslintrc

Lines changed: 0 additions & 72 deletions
This file was deleted.

examples/typescript/.gitattributes

Lines changed: 0 additions & 6 deletions
This file was deleted.

examples/typescript/.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)