Use named exports

Signed-off-by: Niklas Granander <ngranander@spotify.com>
This commit is contained in:
Niklas Granander
2021-08-12 11:54:52 +02:00
parent 918b535041
commit 3bbe05bb02
6 changed files with 6 additions and 6 deletions
@@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './AccordionComponent';
export { AccordionComponent } from './AccordionComponent';
@@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './BuildDetailsComponent';
export { BuildDetailsComponent, withRequest } from './BuildDetailsComponent';
@@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './BuildTimelineComponent';
export { BuildTimelineComponent } from './BuildTimelineComponent';
@@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './BuildsPage';
export { BuildsPage } from './BuildsPage';
@@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './PreformattedTextComponent';
export { PreformattedTextComponent } from './PreformattedTextComponent';
@@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './StatusIconComponent';
export { StatusIconComponent } from './StatusIconComponent';