Skip to content

Commit

Permalink
update imports in components to remove implementation details
Browse files Browse the repository at this point in the history
  • Loading branch information
beccaelenzil committed May 13, 2022
1 parent 3ad8d25 commit adeb83e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "./App.css";
import chatMessages from "./data/messages.json";
import React from 'react';
import './App.css';
import chatMessages from './data/messages.json';

const App = () => {
return (
Expand Down
6 changes: 3 additions & 3 deletions src/components/ChatEntry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "./ChatEntry.css";
import PropTypes from "prop-types";
import React from 'react';
import './ChatEntry.css';
import PropTypes from 'prop-types';

const ChatEntry = (props) => {
return (
Expand Down

0 comments on commit adeb83e

Please sign in to comment.