Skip to content

Commit

Permalink
all components moved to /components, deps fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amivanoff committed Apr 17, 2019
1 parent 5fcf52f commit 06365ae
Show file tree
Hide file tree
Showing 14 changed files with 43 additions and 19 deletions.
1 change: 1 addition & 0 deletions .storybook/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { withI18next } from 'storybook-addon-i18next';

import i18n from '../src/i18n';

import 'antd/dist/antd.css';
import '../src/index.css';

addDecorator(withNotes);
Expand Down
40 changes: 39 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"homepage": "https://agentlab.ru/rdf-scheme-editor",
"dependencies": {
"aphrodite": "^2.3.1",
"antd": "^3.14.1",
"i18next": "^15.0.2",
"i18next-browser-languagedetector": "^3.0.0",
Expand Down
File renamed without changes.
3 changes: 0 additions & 3 deletions src/AddRDF.stories.js → src/components/AddRDF.stories.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import 'antd/dist/antd.css';
import './index.css';

import { Form, Input, Button, Upload, Checkbox,Select, Radio, Layout, Icon } from 'antd';


Expand Down
3 changes: 1 addition & 2 deletions src/Explore.stories.js → src/components/Explore.stories.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { storiesOf } from '@storybook/react';
import React from 'react';
import 'antd/dist/antd.css';
import './index.css';

import {
Form, Select, Input, Button, Table, Checkbox
} from 'antd';
Expand Down
2 changes: 0 additions & 2 deletions src/ExportRepository.stories.js → src/components/ExportRepository.stories.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import ReactDOM from 'react-dom';
import 'antd/dist/antd.css';
import './index.css';
import {
Form, Input, Select, Button, Table
} from 'antd';
Expand Down
File renamed without changes.
2 changes: 0 additions & 2 deletions src/Lab1_Sobolev.stories.js → src/components/Lab1_Sobolev.stories.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import 'antd/dist/antd.css';
import './index.css';
import { StyleSheet, css } from 'aphrodite';
import {
Form, Icon, Input, Button, Checkbox,
Expand Down
4 changes: 1 addition & 3 deletions src/Repositories.stories.js → src/components/Repositories.stories.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import { storiesOf } from "@storybook/react";
import React, { useEffect, useState } from "react";
import "antd/dist/antd.css";
import "./index.css";
import { Table } from "antd";

import { executeGet, executeSelect, executeUpdate } from './sparql';
import { executeGet, executeSelect, executeUpdate } from './../sparql';

const columns = [{
title: 'Id',
Expand Down
2 changes: 0 additions & 2 deletions src/Summary.stories.js → src/components/Summary.stories.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

import { storiesOf } from '@storybook/react';
import React from 'react';
import 'antd/dist/antd.css';
import './index.css';
import {
Form, Input,
} from 'antd';
Expand Down
2 changes: 0 additions & 2 deletions src/SystemInformation.stories.js → src/components/SystemInformation.stories.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { storiesOf } from "@storybook/react";
import React from "react";
import ReactDOM from "react-dom";
import "antd/dist/antd.css";
import "./index.css";
import { Form, Input } from "antd";

class LockedLayout extends React.Component {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import 'antd/dist/antd.css';
import './index.css';
import { StyleSheet, css } from 'aphrodite';
import {
Form, Icon, Input, Button, Checkbox,
Expand Down
File renamed without changes.

0 comments on commit 06365ae

Please sign in to comment.