updates root components structure

This commit is contained in:
Christoph Wolfes
2018-07-25 14:29:43 +02:00
parent 7b921da174
commit 7b37e4e9b6
34 changed files with 38 additions and 29 deletions

View File

@@ -0,0 +1,5 @@
export { default as AddButton } from "./AddButton";
export { default as Button } from "./Button";
export { default as DeleteButton } from "./DeleteButton";
export { default as EditButton } from "./EditButton";
export { default as SubmitButton } from "./SubmitButton";

View File

@@ -0,0 +1,2 @@
export { default as Checkbox } from "./Checkbox";
export { default as InputField } from "./InputField";

View File

@@ -1,6 +1,6 @@
//@flow
import React from "react";
import type { Me } from "../types/Me";
import type { Me } from "../../types/Me";
type Props = {
me?: Me

View File

@@ -1,6 +1,6 @@
//@flow
import * as React from "react";
import Logo from "./Logo";
import Logo from "./../Logo";
type Props = {
children?: React.Node

View File

@@ -1,7 +1,7 @@
//@flow
import * as React from "react";
import Loading from "./Loading";
import ErrorNotification from "./ErrorNotification";
import Loading from "./../Loading";
import ErrorNotification from "./../ErrorNotification";
type Props = {
title: string,

View File

@@ -0,0 +1,3 @@
export { default as Footer } from "./Footer";
export { default as Header } from "./Header";
export { default as Page } from "./Page";

View File

@@ -0,0 +1 @@
export { default as ConfirmAlert } from "./ConfirmAlert";

View File

@@ -1,3 +1,7 @@
//primary Navigation
export { default as PrimaryNavigation } from "./PrimaryNavigation";
export { default as PrimaryNavigationLink } from "./PrimaryNavigationLink";
//secondary Navigation
export { default as Navigation } from "./Navigation";
export { default as Section } from "./Section";
export { default as NavLink } from "./NavLink";